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