import type { GenerateConfig } from '../../generate'; import type { CellRender, Locale } from '../../interface'; import type { ModifyCellClassNamesT } from '../../hooks/useCellClassName'; export declare const QUARTER_COL_COUNT = 4; export type QuarterBodyProps = { prefixCls: string; locale: Locale; generateConfig: GenerateConfig; value?: DateType | null; viewDate: DateType; disabledDate?: (date: DateType) => boolean; onSelect: (value: DateType) => void; cellRender?: CellRender; } & ModifyCellClassNamesT; declare function QuarterBody(props: QuarterBodyProps): import("react/jsx-runtime").JSX.Element; export default QuarterBody;