/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /// import Component from '../../../../packages/react-class'; declare class MenuItem extends Component { constructor(props: any); render(): JSX.Element; componentDidMount(): void; componentWillUnmount(): void; prepareProps(props: any, state: any): any; handleClick(event: any): void; handleMouseDown(): void; handleTouchStart(event: any): void; showMenu(menu: any, props: any): void; handleMouseEnter(event: any): void; handleMouseLeave(event: any): void; renderCells(): any; getCommonCellProps(): { rootClassName: any; rtl: any; }; renderSelectInput(): JSX.Element; renderExpander(): JSX.Element; getStyle(): any; getClassName(): string; getOffset(): { left: number; top: number; width: any; height: any; }; getPreparedProps(): any; hasSubmenu(): boolean; getDOMNode(): any; getValue(): any; getName(): any; } export default MenuItem;