import { Dispatch, FocusEvent, KeyboardEvent, SetStateAction } from 'react'; import { ActionType, MenuIndexesType } from '../MenuTypes'; export declare const handleButtonKeyDownEvent: (e: KeyboardEvent, menuIndexes: MenuIndexesType, setCursor: Dispatch>, setOpen: Dispatch>) => void; export declare const handleKeyDownEvent: (e: React.KeyboardEvent, menuIndexes: MenuIndexesType, cursorAction: ActionType, setCursorAction: Dispatch>, cursor: number, setCursor: Dispatch>, enterCounter: number, setEnterCounter: Dispatch>, setOpen: Dispatch>, closeOnSelect: boolean, label: string) => void; export declare const handleBlurEvent: (e: FocusEvent, closeOnBlur: boolean, setOpen: Dispatch>) => void;