import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { IndicatorTick, IndicatorTick$Outbound } from "./indicatortick.js"; export type Indicator = { name: string; series: Array; }; /** @internal */ export declare const Indicator$inboundSchema: z.ZodType; /** @internal */ export type Indicator$Outbound = { name: string; series: Array; }; /** @internal */ export declare const Indicator$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 Indicator$ { /** @deprecated use `Indicator$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Indicator$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Indicator$Outbound` instead. */ type Outbound = Indicator$Outbound; } export declare function indicatorToJSON(indicator: Indicator): string; export declare function indicatorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=indicator.d.ts.map