/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { TemplateRef } from '@angular/core';
/**
 * Contains meta information about a Scheduler view.
 */
export declare abstract class SchedulerView {
    /**
     * @hidden
     */
    abstract template: TemplateRef<any>;
    /**
     * Sets the view title displayed by the Scheduler, for example, **Day View**.
     */
    abstract title: string;
    /**
     * Sets the invariant name for this view, for example, `day`. If not set, uses the title.
     */
    abstract name: string;
}
