import React from 'react'; import type { ComboboxProps, TListItem } from '../../types/combobox'; export type ComboProps = { /** * list of the combobox. */ list: TListItem[]; /** * Add grouping to the combobox. */ group?: boolean; /** * Add creatable to the combobox. */ creatable?: boolean; onInput?: (value: string) => void; }; export declare const Combobox: React.ForwardRefExoticComponent>;