import { type Negatable } from '../common/negatable.js'; import { type NumericOperator } from '../common/operator.js'; import type { Part } from '../common/part.js'; export interface NumericFieldExpression extends Negatable { /** * The field name. */ field: string; /** * The operator to use when comparing `field` and `value`. */ operator: NumericOperator; /** * The value to match against the field. */ value: number; } export declare function buildNumericField(config: NumericFieldExpression): Part;