import type { ValuesOf } from '../../Types/ValuesOf'; /** * `SchedulerView` - The view mode for the Scheduler component. * * @public */ export declare const SchedulerView: { /** * `timeGrid` - Time grid view with configurable day columns (day/week/workweek). * * @remarks * Relevant properties: `days`, `hourStart`, `hourEnd`, `stepMinutes`, `allDayVisibility` * * @default */ readonly TimeGrid: "timeGrid"; /** * `month` - Month calendar view with event chips. * * @remarks * Relevant properties: `showWeekNumbers`, `showAdjacent` */ readonly Month: "month"; /** * `agenda` - Chronological list view of events. * * @remarks * Relevant properties: `daysAhead` */ readonly Agenda: "agenda"; }; /** * @public */ export type SchedulerView = ValuesOf; //# sourceMappingURL=SchedulerView.d.ts.map