/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { CompositeFilterDescriptor } from '@progress/kendo-data-query';
import { FilterService } from '../filter.service';
import { BooleanFilterComponent } from '../boolean-filter.component';
import { MenuTabbingService } from './menu-tabbing.service';
import { ContextService } from '../../common/provider.service';
import { RadioButtonComponent } from '@progress/kendo-angular-inputs';
import * as i0 from "@angular/core";
/**
* Represents a filtering menu component for boolean columns.
* [See example](https://www.telerik.com/kendo-angular-ui/components/grid/filtering/filter-menu#built-in-filter-menu-components).
*
* @example
* ```html
*
*
*
*
*
*
* ```
*/
export declare class BooleanFilterMenuComponent extends BooleanFilterComponent {
/**
* @hidden
*/
get hostClasses(): boolean;
/**
* The current menu filter.
* @type {CompositeFilterDescriptor}
*/
filter: CompositeFilterDescriptor;
/**
* Represents the `FilterService` instance that handles changes in the filter descriptor.
*/
filterService: FilterService;
/**
* @hidden
*/
menuTabbingService: MenuTabbingService;
idPrefix: string;
/**
* @hidden
*/
private radioButtons;
constructor(ctx: ContextService);
ngAfterViewInit(): void;
/**
* @hidden
*/
radioId(value: any): string;
/**
* @hidden
*/
onChange(value: any, input: RadioButtonComponent): void;
/**
* @hidden
*/
isSelected(radioValue: any): boolean;
/**
* @hidden
*/
onShiftTab(e: Event): void;
/**
* @hidden
*/
get columnLabel(): string;
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}