/**----------------------------------------------------------------------------------------- * 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 the filter-menu template. * Use this directive to customize the content of the filter menu. * To define the filter menu template, nest an `` tag with the * `kendoGridFilterMenuTemplate` directive inside a `` tag. * [See example](https://www.telerik.com/kendo-angular-ui/components/grid/filtering/filter-menu#custom-filters). * * The template context is set to the current data item and provides these additional fields: * - `column`—Defines an instance of the `ColumnComponent` option. Use it as an alias for a template variable by using the `let-column="column"` syntax. * - `filter`—The provided filter descriptors. Use it as an alias for a template variable by using the `let-filter="filter"` syntax. * - `filterService`—Represents the `FilterService`. Use it as an alias for a template variable by using the `let-filterService="filterService"` syntax. * * @example * ```html * * * ... * * * ``` */ export declare class FilterMenuTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }