import { Theme } from '@material-ui/core'; import { WithStyles } from '@material-ui/core/styles/withStyles'; import * as React from 'react'; export interface DayProps extends WithStyles { children: React.ReactNode; current?: boolean; disabled?: boolean; hidden?: boolean; selected?: boolean; } export declare const styles: (theme: Theme) => Record<"hidden" | "disabled" | "day" | "current" | "selected", import("@material-ui/core/styles/withStyles").CSSProperties>; declare const _default: React.ComponentType<(Pick & import("@material-ui/core").StyledComponentProps<"hidden" | "disabled" | "day" | "current" | "selected">) | (Pick & import("@material-ui/core").StyledComponentProps<"hidden" | "disabled" | "day" | "current" | "selected">)>; export default _default;