import { default as React } from 'react'; export interface ComboboxOption { /** Option value */ value: string; /** Option label */ label: string; /** Disabled state */ disabled?: boolean; } export interface ComboboxProps { /** Available options */ options: ComboboxOption[]; /** Selected value */ value?: string; /** Change handler */ onChange: (value: string) => void; /** Placeholder text */ placeholder?: string; /** Input placeholder when searching */ searchPlaceholder?: string; /** Empty state message */ emptyMessage?: string; /** Disabled state */ disabled?: boolean; /** Additional className */ className?: string; } /** * Combobox Component * * Searchable select dropdown with keyboard navigation. * Combines input and select functionality. * * @example * ```tsx * * ``` * * @example * ```tsx * * ``` */ export declare const Combobox: React.FC; //# sourceMappingURL=combobox.d.ts.map