export declare type JsComparisonOperator = '===' | '==' | '!==' | '!=' | '>=' | '<=' | '>' | '<'; export declare const jsComparisonOperators: JsComparisonOperator[]; export declare type SqlComparisonOperator = '=' | '!=' | '>=' | '<=' | '>' | '<' | 'IS' | 'IS NOT';