export declare const ALL_RULE = "ALL"; export declare const ANY_RULE = "ANY"; export declare const NONE_RULE = "NONE"; export declare const RULE_TYPES: string[]; export declare const IDENTITY_OVERRIDE_SEGMENT_NAME = "identity_overrides"; export declare const EQUAL = "EQUAL"; export declare const GREATER_THAN = "GREATER_THAN"; export declare const LESS_THAN = "LESS_THAN"; export declare const LESS_THAN_INCLUSIVE = "LESS_THAN_INCLUSIVE"; export declare const CONTAINS = "CONTAINS"; export declare const GREATER_THAN_INCLUSIVE = "GREATER_THAN_INCLUSIVE"; export declare const NOT_CONTAINS = "NOT_CONTAINS"; export declare const NOT_EQUAL = "NOT_EQUAL"; export declare const REGEX = "REGEX"; export declare const PERCENTAGE_SPLIT = "PERCENTAGE_SPLIT"; export declare const IS_SET = "IS_SET"; export declare const IS_NOT_SET = "IS_NOT_SET"; export declare const MODULO = "MODULO"; export declare const IN = "IN"; export declare const CONDITION_OPERATORS: { EQUAL: string; GREATER_THAN: string; LESS_THAN: string; LESS_THAN_INCLUSIVE: string; CONTAINS: string; GREATER_THAN_INCLUSIVE: string; NOT_CONTAINS: string; NOT_EQUAL: string; REGEX: string; PERCENTAGE_SPLIT: string; IS_SET: string; IS_NOT_SET: string; MODULO: string; IN: string; };