/**----------------------------------------------------------------------------------------- * 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"; /** * Represents a template for the Menu items ([see example](https://www.telerik.com/kendo-angular-ui/components/menus/menu/templates)). To define a template * for an item, nest an `` tag with the `kendoMenuItemTemplate` directive inside a `` * component. To define a template for all Menu items, nest the template inside the `` component. * * The available fields in the template context are: * - `item`—The item data. * - `index`—The item index. * * @example * ```ts-preview * * _@Component({ * selector: 'my-app', * template: ` * * * *
* My Template for: {{ item.text }} at index: {{ index }} *
*
*
*
* ` * }) * * class AppComponent { * } * ``` */ export declare class ItemTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }