/**-----------------------------------------------------------------------------------------
* 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 as Renderer, NgZone } from '@angular/core';
import { Button } from '@progress/kendo-angular-buttons';
import { ContextService } from '../common/provider.service';
import { CSVService } from './csv.service';
import * as i0 from "@angular/core";
/**
* Represents the `csvExport` command of the Grid. Apply this
* directive to any `button` element inside a [`ToolbarTemplate`](https://www.telerik.com/kendo-angular-ui/components/grid/api/toolbartemplatedirective).
* When the user clicks the button, the [`csvExport`](https://www.telerik.com/kendo-angular-ui/components/grid/api/gridcomponent#csvexport) event fires ([see example](https://www.telerik.com/kendo-angular-ui/components/grid/export/csv-export)).
*
* @example
* ```html
*
*
*
*
*
*
* ```
*/
export declare class CSVCommandDirective extends Button {
private csvService;
/**
* @hidden
*/
onClick(e: any): void;
/**
* @hidden
*/
csvClass: boolean;
constructor(csvService: CSVService, element: ElementRef, renderer: Renderer, ctx: ContextService, ngZone: NgZone);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}