import React from 'react'; import { SearchableDropdownProps, Value } from '../types'; export declare function SearchableDropdown({ variant, id, className, name, label, required, optionalText, errorText, assistText, placeholder, width, hasError, options, debounceDelay, noResultsText, onOpen, onClose, onFocus, onBlur, onTextChange, disabled, maxHeight, touched, ...props }: SearchableDropdownProps): React.JSX.Element;