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