/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { LocalizationService } from '@progress/kendo-react-intl';
import { GanttFilterOperator } from '../../interfaces/GanttFilterOperator';
/**
 * @hidden
 */
export declare const textFilterOperators: GanttFilterOperator[];
/**
 * @hidden
 */
export declare const numericFilterOperators: GanttFilterOperator[];
/**
 * @hidden
 */
export declare const dateFilterOperators: GanttFilterOperator[];
/**
 * @hidden
 */
export declare const booleanOperator: string;
/**
 * @hidden
 */
export declare const booleanFilterValues: ({
    text: string;
    operator: string;
} | {
    text: string;
    operator: boolean;
})[];
/**
 * @hidden
 */
export declare function localizeFilter(localization: LocalizationService, operators: GanttFilterOperator[]): {
    clearButtonTitle: string;
    operators: {
        text: string;
        operator: any;
    }[];
};
