export declare enum StringOperator {
    Contains = "Contains",
    DoesNotContain = "DoesNotContain",
    Equals = "Equals",
    DoesNotEqual = "DoesNotEqual",
    StartsWith = "StartsWith",
    DoesNotStartWit = "DoesNotStartWit",
    EndsWith = "EndsWith",
    DoesNotEndWith = "DoesNotEndWith",
    IsNull = "IsNull",
    IsNotNull = "IsNotNull"
}
