import * as React from 'react'; import { GenerateConfig } from '../../generate'; import { Locale } from '../../interface'; export declare const MONTH_COL_COUNT = 3; export declare type MonthCellRender = (currentDate: DateType, locale: Locale) => React.ReactNode; export interface MonthBodyProps { prefixCls: string; locale: Locale; generateConfig: GenerateConfig; value?: DateType | null; viewDate: DateType; disabledDate?: (date: DateType) => boolean; monthCellRender?: MonthCellRender; onSelect: (value: DateType) => void; } declare function MonthBody(props: MonthBodyProps): JSX.Element; export default MonthBody;