/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ElementRef, Renderer2, NgZone } from '@angular/core'; import { Button } from '@progress/kendo-angular-buttons'; import { LocalizationService } from '@progress/kendo-angular-l10n'; import { PDFService } from './pdf.service'; import * as i0 from "@angular/core"; /** * Represents the `export-to-PDF` command for the Scheduler. * * You can apply this directive to any `button` element inside a [`ToolbarTemplate`](https://www.telerik.com/kendo-angular-ui/components/scheduler/toolbar). * When a user clicks a button associated with this directive, the [`pdfExport`](https://www.telerik.com/kendo-angular-ui/components/scheduler/api/schedulercomponent#pdfexport) event fires * ([see example](https://www.telerik.com/kendo-angular-ui/components/scheduler/pdf-export)). * * @example * ```html * * * * * * * * ``` */ export declare class PDFCommandDirective extends Button { private pdfService; /** * @hidden */ onClick(e: any): void; constructor(pdfService: PDFService, element: ElementRef, renderer: Renderer2, localization: LocalizationService, ngZone: NgZone); ngOnInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }