import { MQ } from 'newskit'; import { EventContext } from '../Link/types'; export interface HolidayStopSubscriptionPolicyContent { textList: string[]; moreInfo: { preListParagraph?: string; postListParagraph?: string; textList: string[]; }; } export interface ExpandSectionProps { data: HolidayStopSubscriptionPolicyContent; expanded?: boolean; expandButton?: { expand: string; collapse: string; }; unorderedListOverrides?: { content?: { stylePreset?: MQ; typographyPreset?: MQ; }; marginBlockEnd?: MQ; }; textOverrides?: { typographyPreset?: MQ; stylePreset?: MQ; marginBlockEnd?: MQ; }; buttonOverrides?: { stylePreset?: MQ; paddingInline?: MQ; paddingBlock?: MQ; minHeight?: MQ; minWidth?: MQ; width?: MQ; }; buttonEventContext?: EventContext; }