/// import { MenuProps } from './interface'; export declare type HotkeyInfo = { update: boolean; activeKeyPath: string[]; type: 'sibling' | 'generation' | 'enter'; }; export declare type ClearHotkeyInfo = () => void; declare const MenuContext: import("react").Context & { prefixCls?: string; hotkeyInfo?: HotkeyInfo; clearHotkeyInfo?: ClearHotkeyInfo; onClickMenuItem?: (key: string, event: any) => void; onClickSubMenu?: (key: string, level: number, type: 'pop' | 'inline') => void; collectInlineMenuKeys?: (key: string, unmount?: boolean) => void; }>; export default MenuContext;