import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * OK */ export type GetCurrencyResponseBody = { currency: string; }; /** @internal */ export declare const GetCurrencyResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetCurrencyResponseBody$Outbound = { currency: string; }; /** @internal */ export declare const GetCurrencyResponseBody$outboundSchema: z.ZodType; export declare function getCurrencyResponseBodyToJSON(getCurrencyResponseBody: GetCurrencyResponseBody): string; export declare function getCurrencyResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getcurrency.d.ts.map