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