import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Indicator, Indicator$Outbound } from "./indicator.js"; import { Tick, Tick$Outbound } from "./tick.js"; export type ContractWithIndicator = { assetSymbol: string; symbol: string; name: string; lastTick?: Tick | null | undefined; indicator: Indicator; }; /** @internal */ export declare const ContractWithIndicator$inboundSchema: z.ZodType; /** @internal */ export type ContractWithIndicator$Outbound = { asset_symbol: string; symbol: string; name: string; last_tick?: Tick$Outbound | null | undefined; indicator: Indicator$Outbound; }; /** @internal */ export declare const ContractWithIndicator$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 ContractWithIndicator$ { /** @deprecated use `ContractWithIndicator$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ContractWithIndicator$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ContractWithIndicator$Outbound` instead. */ type Outbound = ContractWithIndicator$Outbound; } export declare function contractWithIndicatorToJSON(contractWithIndicator: ContractWithIndicator): string; export declare function contractWithIndicatorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=contractwithindicator.d.ts.map