import type { TIconsStorageKeys } from '../../icon/iconsStorage' import type { IListItemProps } from '../../list/model/IListItemProps' export interface IHeaderProps { widgetView: 'vertical' | 'horizontal-small' | 'horizontal-medium' | 'horizontal-large' headerTitle: string menuItems: IListItemProps[] icon: TIconsStorageKeys showBackButton: boolean showCloseButton: boolean hideInsightButton: boolean hideMenu: boolean variant: 'primary' | 'secondary' dataTestId: string }