import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A field used in a payment service */ export type Field = { /** * The ID of the configured field. */ key: string; /** * The value of the configured field. */ value: string; }; /** @internal */ export declare const Field$inboundSchema: z.ZodType; /** @internal */ export type Field$Outbound = { key: string; value: string; }; /** @internal */ export declare const Field$outboundSchema: z.ZodType; export declare function fieldToJSON(field: Field): string; export declare function fieldFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=field.d.ts.map