/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { PropType } from 'vue';
/**
 * @hidden
 */
export interface ColumnMenuFilterOperatorsProps {
    filterType: string;
    operator: string;
    operators: Array<{
        text: string;
        operator: any;
    }>;
    onChange?: (event: {
        value: any;
        operator: string | Function;
    }) => void;
}
/**
 * @hidden
 */
declare const ColumnMenuFilterOperators: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    filterType: PropType<string>;
    operator: PropType<string>;
    operators: PropType<{
        text: string;
        operator: any;
    }[]>;
}>, {}, {}, {}, {
    triggerChange(filter: any): void;
    operatorChange(operatorValue: any, e: any): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    change: any;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    filterType: PropType<string>;
    operator: PropType<string>;
    operators: PropType<{
        text: string;
        operator: any;
    }[]>;
}>> & Readonly<{
    onChange?: (...args: any[] | unknown[]) => any;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { ColumnMenuFilterOperators };
