/** * Represents the properties specific to the Month view. * * @remarks * These properties are only applicable when using the `month` view. * * @public */ export interface ISchedulerMonthViewElementProps { /** * Whether to show week numbers on the left side. */ showWeekNumbers: boolean; /** * Whether to show days from adjacent months. */ showAdjacent: boolean; } /** * Default values for Month view properties. * * @public */ export declare namespace ISchedulerMonthViewElementProps { const DEFAULTS: ISchedulerMonthViewElementProps; } //# sourceMappingURL=ISchedulerMonthViewElementProps.d.ts.map