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.
9 lines
358 B
9 lines
358 B
/// <reference types="react" />
|
|
import { PanelSharedProps, PanelMode } from '../../interface';
|
|
export interface YearPanelProps<DateType> extends PanelSharedProps<DateType> {
|
|
sourceMode: PanelMode;
|
|
}
|
|
export declare const YEAR_DECADE_COUNT = 10;
|
|
declare function YearPanel<DateType>(props: YearPanelProps<DateType>): JSX.Element;
|
|
export default YearPanel;
|