/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ElementRef, EventEmitter, NgZone } from '@angular/core'; import { Observable } from 'rxjs'; import { DateRange } from '../types'; import { NavigationAction } from '../types'; import { SchedulerView } from '../types'; import { ToolbarTemplateDirective } from './toolbar-template.directive'; import { ToolbarService } from './toolbar.service'; import { CalendarView } from '@progress/kendo-angular-dateinputs'; import * as i0 from "@angular/core"; /** * @hidden */ export declare class ToolbarComponent { private service; private element; private zone; hostClasses: boolean; toolbarRole: string; selectedView: SchedulerView; views: SchedulerView[]; dateRange: Observable; selectedDate: Observable; template: ToolbarTemplateDirective; min: Date; max: Date; navigate: EventEmitter; toolbarWidthChange: EventEmitter; templateContext: any; toolbarWidth: number; /** * @hidden */ get activeView(): CalendarView; /** * @hidden */ get bottomView(): CalendarView; private subs; constructor(service: ToolbarService, element: ElementRef, zone: NgZone); ngOnInit(): void; ngOnChanges(): void; ngOnDestroy(): void; resizeHandler(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }