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