///
import React from 'react';
export interface DataItem {
label?: any;
value?: any;
children?: any;
isLeaf?: boolean;
disabled?: boolean;
[key: string]: any;
}
export interface MenuProps {
/** web only */
prefixCls?: string;
subMenuPrefixCls?: string;
radioPrefixCls?: string;
className?: string;
style?: React.CSSProperties;
data?: Array;
defaultValue?: Array;
value?: Array;
onChange?: Function;
level?: number;
height?: number;
}