UNPKG

981 BTypeScriptView Raw
1import { Theme } from '@material-ui/core';
2import { WithStyles } from '@material-ui/core/styles/withStyles';
3import * as React from 'react';
4export interface DayProps extends WithStyles<typeof styles> {
5 children: React.ReactNode;
6 current?: boolean;
7 disabled?: boolean;
8 hidden?: boolean;
9 selected?: boolean;
10}
11export declare const styles: (theme: Theme) => Record<"day" | "hidden" | "current" | "isSelected" | "isDisabled", import("@material-ui/core/styles/withStyles").CSSProperties>;
12declare const _default: React.ComponentType<(Pick<DayProps, "children" | "hidden" | "disabled" | "current" | "selected"> & import("@material-ui/core").StyledComponentProps<"day" | "hidden" | "current" | "isSelected" | "isDisabled">) | (Pick<React.PropsWithChildren<DayProps>, "children" | "hidden" | "disabled" | "current" | "selected"> & import("@material-ui/core").StyledComponentProps<"day" | "hidden" | "current" | "isSelected" | "isDisabled">)>;
13export default _default;