import * as React from 'react'; import { MenuProps, MenuState } from './propTypes'; export default class Menu extends React.Component { static propTypes: { level: React.Requireable; }; static defaultProps: { prefixCls: string; value: any[]; data: any[]; level: number; onChange: () => void; }; constructor(props: any); onClickListItem: (el: any) => void; onClickSubMenuItem: (el: any) => void; render(): JSX.Element; }