import * as React from 'react'; import { SubMenuProps, SubMenuState } from './propTypes'; export default class SubMenu extends React.Component { static defaultProps: { prefixCls: string; radioPrefixCls: string; value: any[]; data: any[]; onChange: () => void; }; constructor(props: any); componentWillReceiveProps(nextProps: any): void; onClick: (el: any) => void; render(): JSX.Element; }