import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ForecastTick = { date: Date; targetDateContract: string; closePrice: number; lowerBounds?: Array | null | undefined; upperBounds?: Array | null | undefined; sigmas?: Array | null | undefined; interpolated?: boolean | null | undefined; }; /** @internal */ export declare const ForecastTick$inboundSchema: z.ZodType; /** @internal */ export type ForecastTick$Outbound = { date: string; target_date_contract: string; close_price: number; lower_bounds?: Array | null | undefined; upper_bounds?: Array | null | undefined; sigmas?: Array | null | undefined; interpolated?: boolean | null | undefined; }; /** @internal */ export declare const ForecastTick$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 ForecastTick$ { /** @deprecated use `ForecastTick$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ForecastTick$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ForecastTick$Outbound` instead. */ type Outbound = ForecastTick$Outbound; } export declare function forecastTickToJSON(forecastTick: ForecastTick): string; export declare function forecastTickFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=forecasttick.d.ts.map