export interface MultiSelectOption { value: string; label: string; disabled?: boolean; } interface MultiSelectProps { options?: MultiSelectOption[]; value?: string[]; open?: boolean; label?: string; placeholder?: string; disabled?: boolean; searchable?: boolean; max?: number; emptyText?: string; class?: string; onchange?: (value: string[]) => void; } declare const MultiSelect: import("svelte").Component; type MultiSelect = ReturnType; export default MultiSelect;