/// import { Moment } from "moment"; import { CellStatus } from "./BaseTable"; import { RangeDateType, CalendarTableType, DateChangeContext } from "../DateProps"; export interface YearTableProps { /** * 当前展示时间 */ current: Moment; /** * 允许选择的时间范围限制 */ range?: RangeDateType; cellStatus?: (date: Moment) => CellStatus; onSelect?: (value: Moment, context: DateChangeContext) => void; onTypeChange?: (type: CalendarTableType) => void; onCurrentChange?: (current: Moment) => void; } export declare function YearTable({ current, onCurrentChange, range, onSelect, cellStatus, }: YearTableProps): JSX.Element; export declare namespace YearTable { var displayName: string; }