import * as React from 'react'; import type { GenerateConfig } from '../../generate'; import type { Locale } from '../../interface'; export declare const MONTH_COL_COUNT = 3; export declare type MonthCellRender = (currentDate: DateType, locale: Locale) => React.ReactNode; export declare type 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;