import { Option, SelectProps } from './Select.types.ts'; export declare const useSelect: (props: SelectProps) => { searchMode: boolean; focusSelect: () => void; blurSelect: () => void; userQuery: string; setUserQuery: import('react').Dispatch>; selectedOptions: Option | Option[] | undefined; valueString: string | undefined; selectValue: (newValue: string) => void; clearValue: () => void; filteredOptions: Option[]; };