export interface IAccordionProps { widgetView?: 'vertical' | 'horizontal-small' | 'horizontal-medium' | 'horizontal-large' | undefined variant: AccordionVariants iconName?: string title: string titleClose?: string infoTooltip?: boolean alternativeBackground: boolean } export type AccordionVariants = 'primary' | 'secondary' | 'link' | 'button'