import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { RFCDate } from "../../types/rfcdate.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Tick, Tick$Outbound } from "./tick.js"; export type ContractWithPriceTicks = { assetSymbol: string; symbol: string; name: string; lastTick?: Tick | null | undefined; rolloverDate?: RFCDate | null | undefined; ticks: Array; }; /** @internal */ export declare const ContractWithPriceTicks$inboundSchema: z.ZodType; /** @internal */ export type ContractWithPriceTicks$Outbound = { asset_symbol: string; symbol: string; name: string; last_tick?: Tick$Outbound | null | undefined; rollover_date?: string | null | undefined; ticks: Array; }; /** @internal */ export declare const ContractWithPriceTicks$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 ContractWithPriceTicks$ { /** @deprecated use `ContractWithPriceTicks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ContractWithPriceTicks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ContractWithPriceTicks$Outbound` instead. */ type Outbound = ContractWithPriceTicks$Outbound; } export declare function contractWithPriceTicksToJSON(contractWithPriceTicks: ContractWithPriceTicks): string; export declare function contractWithPriceTicksFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=contractwithpriceticks.d.ts.map