import { SortableListItem } from '@/components/sortableList/SortableList.types'; export type ColumnConfigSection = { sectionId: string; title: string; isGrouped: boolean; maxSelections?: number; sectionOptions: SortableListItem[] | SectionOptionsGroup[]; }; export type SectionOptionsGroup = { displayText: string; options: SortableListItem[]; };