import React from 'react'; import { ComboboxProps } from './Combobox.types'; /** * Combobox is a combination of a Select and TextInput, * allowing the user to either type a value directly or select a value from the list. * Can be configured to select a single or multiple options. */ export declare function Combobox({ children, label, description, placeholder, 'aria-label': ariaLabel, disabled, size, darkMode: darkModeProp, state, errorMessage, successMessage, searchState, searchEmptyMessage, searchErrorMessage, searchLoadingMessage, filteredOptions, onFilter, clearable, onClear, overflow, multiselect, initialValue, inputValue: inputValueProp, onInputChange, onChange, value, chipTruncationLocation, chipCharacterLimit, className, renderMode, portalClassName, portalContainer, portalRef, scrollContainer, popoverZIndex, dropdownWidthBasis, ...rest }: ComboboxProps): React.JSX.Element; /** * Why'd you have to go and make things so complicated? * - Avril; and also me to myself about this component */ //# sourceMappingURL=Combobox.d.ts.map