import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type HttpRequestKeyValuePairDto = { /** * Key of the key-value pair */ key: string; /** * Value of the key-value pair */ value: string; }; /** @internal */ export declare const HttpRequestKeyValuePairDto$inboundSchema: z.ZodType; /** @internal */ export type HttpRequestKeyValuePairDto$Outbound = { key: string; value: string; }; /** @internal */ export declare const HttpRequestKeyValuePairDto$outboundSchema: z.ZodType; export declare function httpRequestKeyValuePairDtoToJSON(httpRequestKeyValuePairDto: HttpRequestKeyValuePairDto): string; export declare function httpRequestKeyValuePairDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=httprequestkeyvaluepairdto.d.ts.map