import { ElementSize, FormVariant } from '../FieldWrapper'; export interface ComboboxOption { value: string; label: string; group?: string; disabled?: boolean; } export interface ComboboxProps { name: string; label?: string; options: ComboboxOption[]; value?: string; defaultValue?: string; onChangeValue?: (value: string, option: ComboboxOption) => void; placeholder?: string; searchable?: boolean; clearable?: boolean; emptyMessage?: string; variant?: FormVariant; size?: ElementSize; required?: boolean; disabled?: boolean; error?: string; className?: string; } export default function Combobox({ name, label, options, value, defaultValue, onChangeValue, placeholder, searchable, clearable, emptyMessage, variant, size, required, disabled, error, className }: ComboboxProps): import("react/jsx-runtime").JSX.Element;