import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ForexTick = { date: Date; price: number; }; /** @internal */ export declare const ForexTick$inboundSchema: z.ZodType; /** @internal */ export type ForexTick$Outbound = { date: string; price: number; }; /** @internal */ export declare const ForexTick$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 ForexTick$ { /** @deprecated use `ForexTick$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ForexTick$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ForexTick$Outbound` instead. */ type Outbound = ForexTick$Outbound; } export declare function forexTickToJSON(forexTick: ForexTick): string; export declare function forexTickFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=forextick.d.ts.map