import { DropdownProps } from '../Dropdown.types'; export declare const useDropdownQuery: (params: { boundInputValue: string | undefined; boundOpen: boolean | undefined; isMultiple: boolean; selectedKey: string | null; selectedOptionLabel: string; onInput: NonNullable; }) => { inputValue: string; handleInputValueChange: (next: string) => void; hasQuery: boolean; isOpen: boolean; setIsOpen: import('react').Dispatch>; };