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"; export type SectorIndexTick = { date: RFCDate; value: number; }; /** @internal */ export declare const SectorIndexTick$inboundSchema: z.ZodType; /** @internal */ export type SectorIndexTick$Outbound = { date: string; value: number; }; /** @internal */ export declare const SectorIndexTick$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 SectorIndexTick$ { /** @deprecated use `SectorIndexTick$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SectorIndexTick$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SectorIndexTick$Outbound` instead. */ type Outbound = SectorIndexTick$Outbound; } export declare function sectorIndexTickToJSON(sectorIndexTick: SectorIndexTick): string; export declare function sectorIndexTickFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sectorindextick.d.ts.map