export interface ComboboxOption { value: string; label: string; description?: string; disabled?: boolean; keywords?: string[]; } export interface ComboboxProps { options: ComboboxOption[]; value?: string; onValueChange?: (value: string) => void; selectedValues?: string[]; onRemoveValue?: (value: string) => void; query?: string; onQueryChange?: (query: string) => void; placeholder?: string; searchPlaceholder?: string; emptyText?: string; loadingText?: string; errorText?: string; error?: string | null; loading?: boolean; multiple?: boolean; readOnly?: boolean; disabled?: boolean; id?: string; name?: string; 'aria-invalid'?: boolean; 'aria-describedby'?: string; className?: string; } export declare function Combobox({ options, value, onValueChange, selectedValues, onRemoveValue, query, onQueryChange, placeholder, searchPlaceholder, emptyText, loadingText, errorText, error, loading, multiple, readOnly, disabled, id, name, 'aria-invalid': ariaInvalid, 'aria-describedby': ariaDescribedBy, className, }: ComboboxProps): import("react/jsx-runtime").JSX.Element;