import type { SelectOption } from './types.js'; export interface Props { /** Field name */ name: string; /** Field label */ label?: string; /** Description for voice extraction */ description?: string; /** Available options */ options: SelectOption[]; /** Placeholder text */ placeholder?: string; /** Current value (bindable) */ value?: string; /** Disabled state */ disabled?: boolean; /** Required field */ required?: boolean; /** Called when value changes */ onchange?: (value: string) => void; } declare const SelectInput: import("svelte").Component; type SelectInput = ReturnType; export default SelectInput; //# sourceMappingURL=SelectInput.svelte.d.ts.map