DecadeBody.d.ts
462 Bytes
/// <reference types="react" />
import { GenerateConfig } from '../../generate';
export declare const DECADE_COL_COUNT = 3;
export interface YearBodyProps<DateType> {
prefixCls: string;
generateConfig: GenerateConfig<DateType>;
viewDate: DateType;
disabledDate?: (date: DateType) => boolean;
onSelect: (value: DateType) => void;
}
declare function DecadeBody<DateType>(props: YearBodyProps<DateType>): JSX.Element;
export default DecadeBody;