import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SectorIndexTick, SectorIndexTick$Outbound } from "./sectorindextick.js"; export type SectorIndexHistoricalData = { assetClass: string; data: Array; }; /** @internal */ export declare const SectorIndexHistoricalData$inboundSchema: z.ZodType; /** @internal */ export type SectorIndexHistoricalData$Outbound = { asset_class: string; data: Array; }; /** @internal */ export declare const SectorIndexHistoricalData$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 SectorIndexHistoricalData$ { /** @deprecated use `SectorIndexHistoricalData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SectorIndexHistoricalData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SectorIndexHistoricalData$Outbound` instead. */ type Outbound = SectorIndexHistoricalData$Outbound; } export declare function sectorIndexHistoricalDataToJSON(sectorIndexHistoricalData: SectorIndexHistoricalData): string; export declare function sectorIndexHistoricalDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sectorindexhistoricaldata.d.ts.map