/**----------------------------------------------------------------------------------------- * 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 the column menu in the TreeList. Use this directive to customize the content of the column menu for all or specific columns. * To define the content template, nest an `` tag with the `kendoTreeListColumnMenuTemplate` directive inside the `kendo-treelist` or the `` component. * * The template context is passed through the following fields: * - `service`—Represents the [ColumnMenuService]({% slug api_treelist_columnmenuservice %}). * - `column`—Represents the TreeList column. * * @example * ```html * * * * * * * * * * * * * ``` */ export declare class ColumnMenuTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }