export type GamaPropControlCondition = {
    id: number | null;
    logic: 'AND' | 'OR';
    children: GamaPropControlCondition[];
    operator: GamaPropConditionOperator;
    value: any;
};
export declare const OPERATORS: readonly ["==", "!=", ">", "<", ">=", "<=", "contains", "not_contains", "in", "not_in"];
export type GamaPropConditionOperator = (typeof OPERATORS)[number];
