/**----------------------------------------------------------------------------------------- * Copyright © 2024 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { LocalizationService } from '@progress/kendo-angular-l10n'; import { FilterService } from '../filter.service'; import { StringFilterComponent } from '../string-filter.component'; import * as i0 from "@angular/core"; /** * Represents a string-filter cell component. [See example](slug:filter_row_treelist#toc-built-in-filter-row-components). * * @example * * ```html * * * * * * * ``` */ export declare class StringFilterCellComponent extends StringFilterComponent { /** * Determines the delay time (in milliseconds) before the filter value is submitted. * A value of `0` indicates no delay. The default value is `500`. * @type {boolean} * @default 500 */ filterDelay: number; /** * Determines if the drop-down filter operators will be displayed. * The default value is `true`. * @type {boolean} * @default true */ showOperators: boolean; constructor(filterService: FilterService, localization: LocalizationService); /** * @hidden */ get columnLabel(): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }