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