/**----------------------------------------------------------------------------------------- * 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 filter-cell template for the TreeList. * Use this directive to customize the filter row cell for a column. * See [custom filter row components](slug:filter_row_treelist#toc-custom-filters). * * The template context is set to the filter descriptor and provides the following fields: * - `column`—The current column instance. Use as an alias for a template variable with `let-column="column"`. * - `filter`—The filter descriptor. * - `cellContext`—An object used to pass context information to built-in directives. * * @example * ```html * * * * * * * ``` */ export declare class FilterCellTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }