import * as React from 'react'; import { ILiElement } from '../../interfaces'; interface MenuItemProps extends ILiElement { /** * If true, item's arrow icon will disappear and bottom border is rendered */ isNav?: boolean; /** * Set active, when click to item */ setActiveItem?: (e: any) => void; /** * Callback function, when active item is changed */ onHandleChange?: (e: any, index: any) => void; /** * Index of active item */ activeKey?: number; /** * Index of item */ itemIndex?: number; /** * Additional classes */ className?: string; } export declare class MenuItem extends React.PureComponent { handleItemClick: (e: any) => void; render(): JSX.Element; } export {};