import { ForwardRefExoticComponent, RefAttributes, ComponentProps } from 'react'; import { Button } from '../button/button'; type ComboboxProps = Omit, 'value' | 'onChange'> & { options: Array<{ value: string; label: string; }>; value?: string; onValueChange?: (value: string) => void; placeholder?: string; searchPlaceholder?: string; emptyText?: string; }; declare const Combobox: ForwardRefExoticComponent & RefAttributes>; export { Combobox };