/**----------------------------------------------------------------------------------------- * 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 template for TreeView nodes ([more information and example](slug:nodetemplate_treeview)). * * Use this template to customize the content of the nodes. To define the node template, nest an `` * tag with the `kendoTreeViewNodeTemplate` directive inside a `` tag. * * The template context provides the node data item and its hierarchical index as variables: * * - `let-dataItem`—The data item for the current node. * - `let-index="index"`—The hierarchical index of the current node. * * @example * ```html * * * * {{ index }}: {{ dataItem.text }} * * * * ``` */ export declare class NodeTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }