import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AssetLongTermForecastData, AssetLongTermForecastData$Outbound } from "./assetlongtermforecastdata.js"; export type GetAssetLongTermForecastsResponse = { success?: true | undefined; data: AssetLongTermForecastData; }; /** @internal */ export declare const GetAssetLongTermForecastsResponse$inboundSchema: z.ZodType; /** @internal */ export type GetAssetLongTermForecastsResponse$Outbound = { success: true; data: AssetLongTermForecastData$Outbound; }; /** @internal */ export declare const GetAssetLongTermForecastsResponse$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 GetAssetLongTermForecastsResponse$ { /** @deprecated use `GetAssetLongTermForecastsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetAssetLongTermForecastsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetAssetLongTermForecastsResponse$Outbound` instead. */ type Outbound = GetAssetLongTermForecastsResponse$Outbound; } export declare function getAssetLongTermForecastsResponseToJSON(getAssetLongTermForecastsResponse: GetAssetLongTermForecastsResponse): string; export declare function getAssetLongTermForecastsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getassetlongtermforecastsresponse.d.ts.map