/**----------------------------------------------------------------------------------------- * Copyright © 2025 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"; /** * Represents the column edit-cell template of the TreeList ([see example](slug:editing_template_forms_treelist)). Use this directive to customize the content of edited cells. To define the cell template, nest an `` tag with the `kendoTreeListEditTemplate` directive inside a `` tag. * * The template context contains the following fields: * - `column`—The current column instance. * - `dataItem`—The current data item. * - `cellContext`—An object used to pass context information to built-in directives. * - `formGroup`—The current [`FormGroup`](link:site.data.urls.angular['formgroupapi']). If you use the TreeList inside [Template-Driven Forms](link:site.data.urls.angular['forms']), `formGroup` is `undefined`. * - `isNew`—The state of the current item. * - `rowIndex`—The current row index. If inside a new item row, `rowIndex` is `-1`. * * @example * ```html * * * * {{rowIndex}} * * * * ``` */ export declare class EditTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }