import type { ValuesOf } from '../../Types/ValuesOf'; /** * `CalendarView` - The `CalendarView` object is used to describe the different views of a calendar control. */ export declare const CalendarView: { /** * `day` - The day view. */ readonly Day: "day"; /** * `month` - The month view. */ readonly Month: "month"; /** * `year` - The year view. */ readonly Year: "year"; }; /** * @public */ export type CalendarView = ValuesOf; //# sourceMappingURL=CalendarView.d.ts.map