You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
614 B
19 lines
614 B
/// <reference types="react" />
|
|
import type { Locale } from '../../interface';
|
|
import type { GenerateConfig } from '../../generate';
|
|
export declare type DateHeaderProps<DateType> = {
|
|
prefixCls: string;
|
|
viewDate: DateType;
|
|
value?: DateType | null;
|
|
locale: Locale;
|
|
generateConfig: GenerateConfig<DateType>;
|
|
onPrevYear: () => void;
|
|
onNextYear: () => void;
|
|
onPrevMonth: () => void;
|
|
onNextMonth: () => void;
|
|
onYearClick: () => void;
|
|
onMonthClick: () => void;
|
|
};
|
|
declare function DateHeader<DateType>(props: DateHeaderProps<DateType>): JSX.Element;
|
|
export default DateHeader;
|