export interface ComboboxOptionProps extends React.ComponentProps<"div"> { /** Option value */ value: string; /** Determines whether the option is selected */ active?: boolean; /** Determines whether the option can be selected */ disabled?: boolean; /** Determines whether item is selected, useful for virtualized comboboxes */ selected?: boolean; } export declare function ComboboxOption(props: ComboboxOptionProps): import("react").JSX.Element;