export interface MultiSelectOption { label: string; value: string; disabled?: boolean; } import type { HTMLAttributes } from "svelte/elements"; type MultiSelectProps = Omit, "class" | "onchange"> & { label?: string; helperText?: string; errorText?: string; invalid?: boolean; size?: "sm" | "md" | "lg"; options: MultiSelectOption[]; selected?: string[]; locale?: string; placeholder?: string; searchPlaceholder?: string; noResultsLabel?: string; toggleLabel?: string; removeLabel?: string; listLabel?: string; disabled?: boolean; class?: string; onchange?: (selected: string[]) => void; }; declare const MultiSelect: import("svelte").Component; type MultiSelect = ReturnType; export default MultiSelect; //# sourceMappingURL=MultiSelect.svelte.d.ts.map