export declare enum Comparitor { Equals = "=", GreaterThan = ">", LessThan = "<", IsNull = "IS NULL", IsNotNull = "IS NOT NULL" } export declare namespace Comparitor { function isCheckingNull(comparitor: Comparitor): boolean; }