/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ChangeDetectorRef, NgZone } from '@angular/core'; import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar'; import { ExcelService } from './excel.service'; import { ContextService } from '../common/provider.service'; import { ToolbarToolBase } from '../common/toolbar-tool-base.directive'; import * as i0 from "@angular/core"; /** * Represents the **Export to Excel** toolbar tool of the Grid. * Apply this directive to any `kendo-toolbar-button` element inside a ToolbarComponent used in the Grid. * When the user clicks the button, the [`excelExport`]({% slug api_grid_gridcomponent %}#toc-excelexport) event fires ([see example]({% slug excelexport_grid %})). * * @example * ```html * * * * * * * ``` * @remarks * Applied to: {@link ToolBarButtonComponent}. */ export declare class ExcelCommandToolbarDirective extends ToolbarToolBase { private excelService; constructor(excelService: ExcelService, host: ToolBarButtonComponent, ctx: ContextService, zone: NgZone, cdr: ChangeDetectorRef); ngOnInit(): void; /** * @hidden */ onClick(e: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }