/// <reference types="react" />
import { OptionConfig } from "../interface";
/**
 * 管理Select选择器的键盘导航
 */
export default function useNnavigate(options: React.MutableRefObject<OptionConfig[]>, value: any, selectValue: (val: any) => void, setVisible: (vis: boolean) => void, searchMode: boolean, multiple?: boolean): [any, (e: React.KeyboardEvent<HTMLElement>) => void, React.MutableRefObject<any>];
