import React from "react";
export declare const DefaultOperator = "=";
export declare const operatorMap: Record<string, JSX.Element>;
export declare const commonOperator: {
    label: JSX.Element;
    value: string;
    popover: string;
}[];
export declare const strOperator: {
    label: JSX.Element;
    value: string;
    popover: string;
}[];
export declare const numOperator: {
    label: JSX.Element;
    value: string;
    popover: string;
}[];
export declare const AllOperator: {
    label: React.ReactNode;
    value: string;
    popover?: string;
}[];
