import type { ControlInteractionOptions, ControlOption } from './control-interaction.js'; export interface Props { options: ControlOption[]; value?: string; label: string; name?: string; placeholder?: string; disabled?: boolean; required?: boolean; allowCustom?: boolean; interaction?: ControlInteractionOptions | false; onvaluechange?: (value: string) => void; class?: string; } declare const Combobox: import("svelte").Component; type Combobox = ReturnType; export default Combobox; //# sourceMappingURL=Combobox.svelte.d.ts.map