import * as React from 'react'; import { WithStyles } from '../../core/withStyles'; import styles from './MenuItem.styles'; export interface MenuItemProps extends WithStyles { /** The label of the menu item */ label: string; /** Set to true when the menu item is active */ active?: boolean; /** Set href to render */ href?: string; /** Set target of the href */ target?: string; /** Called when the menu item is clicked */ onClick?: () => any; isDrawerItem?: boolean; } export declare const MenuItem: React.SFC; declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;