/**-----------------------------------------------------------------------------------------
* 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 { LocalizationService } from '@progress/kendo-angular-l10n';
import { EditService } from '../edit.service';
import * as i0 from "@angular/core";
/**
* Represents the add command button directive of the Kendo UI ListView for Angular.
* Provides the command for adding a new item to the ListView. You can apply this directive to any
* `button` element inside a [`HeaderTemplate`](https://www.telerik.com/kendo-angular-ui/components/listview/api/headertemplatedirective).
* When you click an associated button with the directive, the
* [`add`](https://www.telerik.com/kendo-angular-ui/components/listview/api/listviewcomponent#add) event triggers
* ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/editing)).
*
* @example
* ```html
*
*
*
*
*
* ```
*/
export declare class AddCommandDirective extends Button {
private editService;
/**
* @hidden
*/
clickHandler(e: any): void;
constructor(editService: EditService, element: ElementRef, renderer: Renderer, localization: LocalizationService, ngZone: NgZone);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}