UNPKG

@mui/x-date-pickers

Version:

The community edition of the Date and Time Picker components (MUI X).

20 lines (19 loc) 881 B
import * as React from 'react'; import { DefaultizedProps } from '../internals/models/helpers'; import { MonthCalendarProps } from './MonthCalendar.types'; import { PickerValidDate } from '../models'; export declare function useMonthCalendarDefaultizedProps<TDate extends PickerValidDate>(props: MonthCalendarProps<TDate>, name: string): DefaultizedProps<MonthCalendarProps<TDate>, 'minDate' | 'maxDate' | 'disableFuture' | 'disablePast'>; type MonthCalendarComponent = (<TDate extends PickerValidDate>(props: MonthCalendarProps<TDate> & React.RefAttributes<HTMLDivElement>) => React.JSX.Element) & { propTypes?: any; }; /** * Demos: * * - [DateCalendar](https://mui.com/x/react-date-pickers/date-calendar/) * * API: * * - [MonthCalendar API](https://mui.com/x/api/date-pickers/month-calendar/) */ export declare const MonthCalendar: MonthCalendarComponent; export {};