export interface ComboboxOption { label: string; value: string; disabled?: boolean; } import type { HTMLInputAttributes } from "svelte/elements"; type ComboboxProps = Omit & { label?: string; helperText?: string; errorText?: string; invalid?: boolean; size?: "sm" | "md" | "lg"; options: ComboboxOption[]; value?: string; placeholder?: string; allowCustomValue?: boolean; noResultsLabel?: string; clearLabel?: string; toggleLabel?: string; listLabel?: string; class?: string; onselect?: (value: string) => void; onchange?: (value: string) => void; }; declare const Combobox: import("svelte").Component; type Combobox = ReturnType; export default Combobox; //# sourceMappingURL=Combobox.svelte.d.ts.map