/** * Internal symbols used to identify different types of conditions. */ declare const $comparison: unique symbol; declare const $logical: unique symbol; declare const $between: unique symbol; declare const $in: unique symbol; declare const $not: unique symbol; declare const $exists: unique symbol; declare const $type: unique symbol; declare const $beginsWith: unique symbol; declare const $contains: unique symbol; declare const $size: unique symbol; declare function isConditionSymbol(value: unknown): boolean; export { $beginsWith, $between, $comparison, $contains, $exists, $in, $logical, $not, $size, $type, isConditionSymbol };