///
import type { Locale } from '../../interface';
import type { GenerateConfig } from '../../generate';
export declare type DateHeaderProps = {
prefixCls: string;
viewDate: DateType;
value?: DateType | null;
locale: Locale;
generateConfig: GenerateConfig;
onPrevYear: () => void;
onNextYear: () => void;
onPrevMonth: () => void;
onNextMonth: () => void;
onYearClick: () => void;
onMonthClick: () => void;
};
declare function DateHeader(props: DateHeaderProps): JSX.Element;
export default DateHeader;