import type { OperatorDefinition } from '../../definition_types'; /** * The `IN` operator allows testing whether a field or expression equals an element in a list of literals, fields or expressions. * * @example * ROW a = 1, b = 4, c = 3 * | WHERE c-a IN (3, b / 2, a) */ declare const definition: OperatorDefinition; export default definition; //# sourceMappingURL=in.d.ts.map