import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Tick = { datetime: Date; open?: number | null | undefined; high?: number | null | undefined; low?: number | null | undefined; close?: number | null | undefined; volume: number; openInterest: number; change?: number | null | undefined; }; /** @internal */ export declare const Tick$inboundSchema: z.ZodType; /** @internal */ export type Tick$Outbound = { datetime: string; open?: number | null | undefined; high?: number | null | undefined; low?: number | null | undefined; close?: number | null | undefined; volume: number; open_interest: number; change?: number | null | undefined; }; /** @internal */ export declare const Tick$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 Tick$ { /** @deprecated use `Tick$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Tick$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Tick$Outbound` instead. */ type Outbound = Tick$Outbound; } export declare function tickToJSON(tick: Tick): string; export declare function tickFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=tick.d.ts.map