UNPKG

@material-ui/lab

Version:

Material-UI Lab - Incubator for Material-UI React components.

16 lines (15 loc) 986 B
import * as React from 'react'; import { WithStyles, Theme } from '@material-ui/core/styles'; export interface MonthProps { children: React.ReactNode; disabled?: boolean; onSelect: (value: any) => void; selected?: boolean; value: any; } export declare const styles: (theme: Theme) => Record<"selected" | "root", import("../../../material-ui-styles/src").CSSProperties | import("../../../material-ui-styles/src").CreateCSSProperties<{}> | import("../../../material-ui-styles/src").PropsFunc<{}, import("../../../material-ui-styles/src").CreateCSSProperties<{}>>>; export declare type PickersMonthClassKey = keyof WithStyles<typeof styles>['classes']; declare const _default: React.ComponentType<Pick<React.PropsWithChildren<MonthProps & { classes: Record<"selected" | "root", string>; }>, "disabled" | "value" | "selected" | "children" | "onSelect"> & import("../../../material-ui/src/styles").StyledComponentProps<"selected" | "root">>; export default _default;