import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EffectivePriceRow, EffectivePriceRow$Outbound } from "./effectivepricerow.js"; export type EffectivePricesResponse = { object: "list"; currency: string | null; data: Array; }; /** @internal */ export declare const EffectivePricesResponse$inboundSchema: z.ZodType; /** @internal */ export type EffectivePricesResponse$Outbound = { object: "list"; currency: string | null; data: Array; }; /** @internal */ export declare const EffectivePricesResponse$outboundSchema: z.ZodType; export declare function effectivePricesResponseToJSON(effectivePricesResponse: EffectivePricesResponse): string; export declare function effectivePricesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=effectivepricesresponse.d.ts.map