import { type Negatable } from '../common/negatable.js'; import { type StringOperator } from '../common/operator.js'; import type { Part } from '../common/part.js'; export interface StringFieldExpression extends Negatable { /** * The field name. */ field: string; /** * The operator to use when comparing `field` and `values`. */ operator: StringOperator; /** * The values to match against the field. */ values: string[]; } export declare function buildStringField(config: StringFieldExpression): Part;