/**----------------------------------------------------------------------------------------- * 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"; /** * Allows you to customize the rendering of each item in the Kendo UI ListBox for Angular. * * Place an `` with the `kendoListBoxItemTemplate` directive inside your `` component. * The template context exposes the current data item as `let-dataItem`. * * @example * ```typescript * @Component({ * selector: 'my-app', * template: ` * * * {{ dataItem }} item * * * ` * }) * export class AppComponent { } * ``` */ export declare class ItemTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }