import * as React from 'react';
import { DefaultizedProps } from '../internals/models/helpers';
import { MonthCalendarProps } from './MonthCalendar.types';
export declare function useMonthCalendarDefaultizedProps<TDate>(props: MonthCalendarProps<TDate>, name: string): DefaultizedProps<MonthCalendarProps<TDate>, 'minDate' | 'maxDate' | 'disableFuture' | 'disablePast'>;
type MonthCalendarComponent = (<TDate>(props: MonthCalendarProps<TDate> & React.RefAttributes<HTMLDivElement>) => JSX.Element) & {
    propTypes?: any;
};
export declare const MonthCalendar: MonthCalendarComponent;
export {};
