export interface MultiSelectItem { id: string; label: string; description?: string; meta?: string; disabled?: boolean; } export interface MultiSelectOptions { selector: string; items: MultiSelectItem[]; placeholder?: string; selectedIds?: string[]; disabled?: boolean; searchable?: boolean; maxSelections?: number; emptyState?: string; hydrate?: boolean; onChange?: (selected: MultiSelectItem[]) => void; onSearch?: (term: string) => void; } //# sourceMappingURL=MultiSelect.types.d.ts.map