import { VisualSlotType } from '../../../../shared/types/types'; import { default as React } from 'react'; export interface ListWithSeparatorGroup { items: Array<{ id: string; label: string; icon?: VisualSlotType; disabled?: boolean; }>; } export interface ListWithSeparatorProps { groups: ListWithSeparatorGroup[]; currentValue?: string; onItemClick?: (itemId: string) => void; className?: string; } export declare const ListWithSeparator: React.FC; //# sourceMappingURL=ListWithSeparator.d.ts.map