import * as React from 'react'; import { WithStyles } from '../../core/withStyles'; import styles from './Overlay.styles'; export interface OverlayProps extends WithStyles { className?: string; onClick?: () => any; testId?: string; } export declare const Overlay: React.SFC; declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;