/**-----------------------------------------------------------------------------------------
* 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';
import { SchedulerView } from '../types';
import * as i0 from "@angular/core";
/**
* A directive selector for a custom Scheduler view.
*
* @example
* ```html
*
*
*
*
*
*
*
* ```
*/
export declare class SchedulerViewDirective extends SchedulerView {
template: TemplateRef;
/**
* Sets the user-friendly name for this view.
*/
title: string;
/**
* Sets the invariant name for this view. If not set, uses the defined user-friendly name.
*/
get name(): string;
set name(value: string);
private _name;
constructor(template: TemplateRef);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵdir: i0.ɵɵDirectiveDeclaration;
}