export interface AncillaryCardProps { ancillary: { title: string imageUrl: string imageOpacity?: number price: { total: number currency: string text?: string included?: boolean } points?: number description?: string } } export interface BreakfastChoiceCardProps extends AncillaryCardProps { name: string id?: string value: string }