import { Button } from '..'; import * as React from 'react'; export interface ComboboxOption { value: string; label: string; disabled?: boolean; } export interface ComboboxProps { options: ComboboxOption[]; value?: string; onValueChange?: (value: string) => void; placeholder?: string; searchPlaceholder?: string; emptyText?: string; disabled?: boolean; className?: string; triggerClassName?: string; contentClassName?: string; buttonVariant?: React.ComponentProps['variant']; buttonSize?: React.ComponentProps['size']; } declare function Combobox({ options, value, onValueChange, placeholder, searchPlaceholder, emptyText, disabled, triggerClassName, contentClassName, buttonVariant, buttonSize, }: ComboboxProps): React.JSX.Element; export { Combobox }; //# sourceMappingURL=Combobox.d.ts.map