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.
15 lines
501 B
15 lines
501 B
/// <reference types="react" />
|
|
import type { Locale } from '../../interface';
|
|
import type { GenerateConfig } from '../../generate';
|
|
export declare type MonthHeaderProps<DateType> = {
|
|
prefixCls: string;
|
|
viewDate: DateType;
|
|
locale: Locale;
|
|
generateConfig: GenerateConfig<DateType>;
|
|
onPrevYear: () => void;
|
|
onNextYear: () => void;
|
|
onYearClick: () => void;
|
|
};
|
|
declare function MonthHeader<DateType>(props: MonthHeaderProps<DateType>): JSX.Element;
|
|
export default MonthHeader;
|