/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ChangeDetectorRef } from '@angular/core'; import { FilterService } from '../filter.service'; import { BooleanFilterComponent } from '../boolean-filter.component'; import { GridSize } from '../../common/size-options'; import { SizingOptionsService } from '../../layout/sizing-options.service'; import { ContextService } from '../../common/provider.service'; import * as i0 from "@angular/core"; /** * Represents a filter-cell component for boolean columns. * See the article about the [built-in filter components](https://www.telerik.com/kendo-angular-ui/components/grid/filtering/filter-row#built-in-filter-row-components). * * @example * ```html * * * * * * * ``` */ export declare class BooleanFilterCellComponent extends BooleanFilterComponent { private cd; /** * @hidden */ size: GridSize; private subs; constructor(filterService: FilterService, ctx: ContextService, cd: ChangeDetectorRef, sizingService: SizingOptionsService); ngOnDestroy(): void; protected localizationChange(): void; /** * @hidden */ get columnLabel(): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }