import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type StrategyTrajectoryHorizonResponse = { id: string; createdAt: string | null; updatedAt: string | null; model: string | null; horizon: number | null; trajectoryId: string | null; }; /** @internal */ export declare const StrategyTrajectoryHorizonResponse$inboundSchema: z.ZodType; /** @internal */ export type StrategyTrajectoryHorizonResponse$Outbound = { id: string; created_at: string | null; updated_at: string | null; model: string | null; horizon: number | null; trajectory_id: string | null; }; /** @internal */ export declare const StrategyTrajectoryHorizonResponse$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 StrategyTrajectoryHorizonResponse$ { /** @deprecated use `StrategyTrajectoryHorizonResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `StrategyTrajectoryHorizonResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `StrategyTrajectoryHorizonResponse$Outbound` instead. */ type Outbound = StrategyTrajectoryHorizonResponse$Outbound; } export declare function strategyTrajectoryHorizonResponseToJSON(strategyTrajectoryHorizonResponse: StrategyTrajectoryHorizonResponse): string; export declare function strategyTrajectoryHorizonResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=strategytrajectoryhorizonresponse.d.ts.map