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.
InternshipProject/node_modules/rc-picker/lib/panels/YearPanel/index.d.ts

9 lines
363 B

/// <reference types="react" />
import type { PanelSharedProps, PanelMode } from '../../interface';
export declare type YearPanelProps<DateType> = {
sourceMode: PanelMode;
} & PanelSharedProps<DateType>;
export declare const YEAR_DECADE_COUNT = 10;
declare function YearPanel<DateType>(props: YearPanelProps<DateType>): JSX.Element;
export default YearPanel;