export declare const StringOperators: readonly ["||", "&"]; export declare const ArithmeticOperators: readonly ["+", "-", "*", "/"]; export declare const ComparisonOperators: readonly ["==", "=", "<", ">", "<=", ">=", "!="]; export type ArithmeticOperator = (typeof ArithmeticOperators)[number]; export type ComparisonOperator = (typeof ComparisonOperators)[number]; export type StringOperator = (typeof StringOperators)[number];