import { ComboboxStyles } from './combobox.css'; import * as React from 'react'; interface ComboboxProps extends React.ButtonHTMLAttributes, ComboboxStyles { options: { label: string; value: string; icon?: React.ComponentType<{ className?: string; }>; disabled?: boolean; }[]; onValueChange: (value: string) => void; defaultValue?: string; placeholder?: string; modalPopover?: boolean; asChild?: boolean; className?: string; searchPlaceholder?: string; emptyMessage?: string; } declare const Combobox: React.ForwardRefExoticComponent>; export { Combobox }; //# sourceMappingURL=combobox.d.ts.map