/**----------------------------------------------------------------------------------------- * 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"; /** * Allows customizing the list item content. To define an item template, nest an `` tag * with the `kendoListViewItemTemplate` directive inside the `` tag * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/templates#item-template)). * * The following values are available as context variables: * - `let-dataItem="dataItem"` (`any`)&mdashThe current data item. Also available as implicit context variable. * - `let-index="index"` (`number`)&mdashThe current item index. * - `let-isFirst="isFirst"` (`boolean`)&mdashIndicates whether the current data item renders as the first item on the list. * - `let-isLast="isLast"` (`boolean`)&mdashIndicates whether the current data item renders as the last item on the list. * * @example * ```typescript * @Component({ * template: ` * * *
*

{{ dataItem.name }}

*

Item #{{ index + 1 }}: {{ dataItem.description }}

*
*
*
* ` * }) * export class AppComponent { } * ``` */ export declare class ItemTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }