import * as React from 'react'; import { WithStyles } from '../../core/withStyles'; import { Theme } from '../../theme'; interface ScheduleContentPopoverProps extends WithStyles { open: boolean; onClose: () => void; } declare const styles: (theme: Theme) => Record<"root", import("@material-ui/core/styles/withStyles").CSSProperties>; export declare const ScheduleContentPopover: React.SFC; declare const _default: (React.ComponentClass & import("@material-ui/core/styles/withStyles").StyledComponentProps, any> & { Item: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; }) | (React.FunctionComponent & import("@material-ui/core/styles/withStyles").StyledComponentProps> & { Item: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; }); export default _default;