/**
 * Determines the way {@link Predicate}s are combined together.
 */
export declare enum BooleanOperator {
    AND = "AND",
    OR = "OR"
}
