import type { Dispatch, KeyboardEvent, SetStateAction } from "react"; import type { CascadingMenuListProps } from "../CascadingMenuList"; interface getKeyDownHandlersProps extends CascadingMenuListProps { keyDownHandlersOverride?: Record void>; } export declare function getKeyDownHandlers(props: getKeyDownHandlersProps, setIsMenuActive: Dispatch>): (event: KeyboardEvent) => void; export {};