import { type MultiSelectOption } from '../MultiSelect/MultiSelect.svelte'; interface FormMultiSelectProps { name?: string; label?: string; placeholder?: string; options?: MultiSelectOption[]; value?: string[]; searchable?: boolean; max?: number; emptyText?: string; helperText?: string; errorMessage?: string; disabled?: boolean; bindData?: boolean; class?: string; onchange?: (value: string[]) => void; } declare const FormMultiSelect: import("svelte").Component; type FormMultiSelect = ReturnType; export default FormMultiSelect;