import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetFuturesForecastsModelsRequest = { /** * Future symbol */ symbol: string; /** * Expose additional details about the models available */ details?: boolean | undefined; }; /** @internal */ export declare const GetFuturesForecastsModelsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetFuturesForecastsModelsRequest$Outbound = { symbol: string; details: boolean; }; /** @internal */ export declare const GetFuturesForecastsModelsRequest$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 GetFuturesForecastsModelsRequest$ { /** @deprecated use `GetFuturesForecastsModelsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetFuturesForecastsModelsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetFuturesForecastsModelsRequest$Outbound` instead. */ type Outbound = GetFuturesForecastsModelsRequest$Outbound; } export declare function getFuturesForecastsModelsRequestToJSON(getFuturesForecastsModelsRequest: GetFuturesForecastsModelsRequest): string; export declare function getFuturesForecastsModelsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getfuturesforecastsmodels.d.ts.map