import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { StrategyTrajectoryResponse, StrategyTrajectoryResponse$Outbound } from "./strategytrajectoryresponse.js"; export type StrategyResponse = { id: string; createdAt: string | null; updatedAt: string | null; name: string | null; symbol: string; trajectories?: Array | null | undefined; }; /** @internal */ export declare const StrategyResponse$inboundSchema: z.ZodType; /** @internal */ export type StrategyResponse$Outbound = { id: string; created_at: string | null; updated_at: string | null; name: string | null; symbol: string; trajectories?: Array | null | undefined; }; /** @internal */ export declare const StrategyResponse$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 StrategyResponse$ { /** @deprecated use `StrategyResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `StrategyResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `StrategyResponse$Outbound` instead. */ type Outbound = StrategyResponse$Outbound; } export declare function strategyResponseToJSON(strategyResponse: StrategyResponse): string; export declare function strategyResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=strategyresponse.d.ts.map