import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type FieldValuePair = { /** * The field to match */ field: string; /** * The value to match */ value: string; }; /** @internal */ export declare const FieldValuePair$inboundSchema: z.ZodType; /** @internal */ export type FieldValuePair$Outbound = { field: string; value: string; }; /** @internal */ export declare const FieldValuePair$outboundSchema: z.ZodType; export declare function fieldValuePairToJSON(fieldValuePair: FieldValuePair): string; export declare function fieldValuePairFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=fieldvaluepair.d.ts.map