import { TextFieldVariant } from '../TextField'; export interface ComboboxOption { value: T; label: string; icon?: string; } export interface ComboboxProps { options: ComboboxOption[]; value?: T; onChange?: (v: T | undefined) => void; label?: string; variant?: TextFieldVariant; placeholder?: string; /** Restricts input to listed options. */ strict?: boolean; helperText?: string; error?: boolean; leadingIcon?: string; className?: string; } export declare function Combobox({ options, value, onChange, label, variant, placeholder, strict, helperText, error, leadingIcon, className, }: ComboboxProps): import("react/jsx-runtime").JSX.Element;