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