import { Dispatch, SetStateAction } from 'react'; import { SelectOptionProps } from './SelectTypes'; export declare const useDownshift: (creatable: boolean, createMessage: string, disabled: boolean, selectId: string, loading: boolean, multiple: boolean, searchable: boolean, options: SelectOptionProps[], filteredOptions: SelectOptionProps[], setFilteredOptions: Dispatch>, selectedItems: SelectOptionProps[], setSelectedItems: Dispatch>) => import('downshift').UseSelectReturnValue;