/**----------------------------------------------------------------------------------------- * 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 links of 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 `kendoMenuItemLinkTemplate` 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: ` * * * * * {{ item.text }} * @if (item.items && item.items.length) { * * } * * * * * ` * }) * * class AppComponent { * } * ``` */ export declare class ItemLinkTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }