import { InformationCardProps } from '@synerise/ds-information-card'; import { ListItemProps } from '@synerise/ds-list-item'; import { ItemPickerListTexts } from './itemPickerListTexts.types'; export type InheritedFromListItem = Pick; export type BaseSectionType = InheritedFromListItem & { text: string; id: string | number; texts?: Partial>; }; export type BaseSectionTypeWithFolders = SectionType & { folders?: BaseSectionTypeWithFolders[]; }; export type BaseItemType = InheritedFromListItem & { text: string; sectionId?: BaseSectionType['id']; informationCardProps?: InformationCardProps; };