/// import { GenerateConfig } from '../../generate'; import { Locale } from '../../interface'; export declare const QUARTER_COL_COUNT = 4; export interface QuarterBodyProps { prefixCls: string; locale: Locale; generateConfig: GenerateConfig; value?: DateType | null; viewDate: DateType; disabledDate?: (date: DateType) => boolean; onSelect: (value: DateType) => void; } declare function QuarterBody(props: QuarterBodyProps): JSX.Element; export default QuarterBody;