import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MovingAverageTick, MovingAverageTick$Outbound } from "./movingaveragetick.js"; export type MovingAverage = { horizon: number; movingAverage: Array; }; /** @internal */ export declare const MovingAverage$inboundSchema: z.ZodType; /** @internal */ export type MovingAverage$Outbound = { horizon: number; moving_average: Array; }; /** @internal */ export declare const MovingAverage$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 MovingAverage$ { /** @deprecated use `MovingAverage$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MovingAverage$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MovingAverage$Outbound` instead. */ type Outbound = MovingAverage$Outbound; } export declare function movingAverageToJSON(movingAverage: MovingAverage): string; export declare function movingAverageFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=movingaverage.d.ts.map