import * as react_jsx_runtime from 'react/jsx-runtime'; type ComboboxOption = { value: string; label: string; disabled?: boolean; }; type ComboboxProps = { options: ComboboxOption[]; value?: string; onValueChange?: (value: string) => void; placeholder?: string; searchPlaceholder?: string; emptyMessage?: string; disabled?: boolean; /** * Render the trigger with the destructive border + ring. Use for * form-level error states — pairs with `` in a Field. */ invalid?: boolean; className?: string; triggerClassName?: string; contentClassName?: string; }; declare function Combobox({ options, value, onValueChange, placeholder, searchPlaceholder, emptyMessage, disabled, invalid, className, triggerClassName, contentClassName, }: ComboboxProps): react_jsx_runtime.JSX.Element; export { Combobox, type ComboboxOption, type ComboboxProps };