import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AssetPriceData, AssetPriceData$Outbound } from "./assetpricedata.js"; export type GetAssetPricesResponse = { success?: true | undefined; data: AssetPriceData; }; /** @internal */ export declare const GetAssetPricesResponse$inboundSchema: z.ZodType; /** @internal */ export type GetAssetPricesResponse$Outbound = { success: true; data: AssetPriceData$Outbound; }; /** @internal */ export declare const GetAssetPricesResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetAssetPricesResponse$ { /** @deprecated use `GetAssetPricesResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetAssetPricesResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetAssetPricesResponse$Outbound` instead. */ type Outbound = GetAssetPricesResponse$Outbound; } export declare function getAssetPricesResponseToJSON(getAssetPricesResponse: GetAssetPricesResponse): string; export declare function getAssetPricesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getassetpricesresponse.d.ts.map