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