/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { TemplateRef } from '@angular/core'; import * as i0 from "@angular/core"; /** * Defines the edit template of the ListView ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/editing/editing-template-forms)). * Helps you customize the content of the edited items. To define the template, nest an `` * tag with the `kendoListViewEditTemplate` directive inside a `` tag. * * The template context contains the following fields: * - `formGroup`—The current [`FormGroup`](link:site.data.urls.angular['formgroupapi']). When you use the ListView inside [Template-Driven Forms](link:site.data.urls.angular['forms']), it will be `undefined`. * - `itemIndex`—The current item index. When inside a new item, `itemIndex` is `-1`. * - `dataItem`—The current data item. * - `isNew`—The state of the current item. * * * @example * ```typescript * @Component({ * template: ` * * *
* * * *
*
*
* ` * }) * export class AppComponent { } * ``` */ export declare class EditTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }