/** * Represents the properties specific to the Agenda view. * * @remarks * These properties are only applicable when using the `agenda` view. * * @public */ export interface ISchedulerAgendaViewElementProps { /** * The number of days ahead to display in the agenda. */ daysAhead: number; } /** * Default values for Agenda view properties. * * @public */ export declare namespace ISchedulerAgendaViewElementProps { const DEFAULTS: ISchedulerAgendaViewElementProps; } //# sourceMappingURL=ISchedulerAgendaViewElementProps.d.ts.map