import { SchedulerView } from '../../../Types/SchedulerView'; /** * Interface for properties inherited by child SchedulerEvent elements from views. * * @public */ export interface ISchedulerViewInherited { /** * Inherited view mode for event elements. * Determines how the event is visually rendered within the view. */ view?: SchedulerView; } /** * Context for SchedulerView → SchedulerEvent inheritance. * This allows views (TimeGrid, Month, Agenda) to automatically set the view * property on child event elements. * * @public */ export declare const SCHEDULER_VIEW_INHERITANCE_CONTEXT: { __context__: Partial; }; //# sourceMappingURL=SchedulerViewInheritanceContext.d.ts.map