import React from 'react'; export interface MenuInfo { key: React.Key; keyPath: React.Key[]; domEvent: Event; } export declare type MenuClickEventHandler = (info: MenuInfo) => void; export declare type MenuMode = 'inline' | 'vertical'; export declare type TriggerSubMenuAction = 'click' | 'hover'; export declare type SubMenuChangeEventHandler = (openKey: string) => void; export declare type KeyType = React.Key; export declare type MenuTheme = 'dark' | 'light';