import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AvailableFuture = { symbol: string; type: string; assetClassSymbol: string; name: string; tickSize?: number | null | undefined; unit?: string | null | undefined; sku: string | null; code: string | null; priceFile: string | null; marketDate?: Date | null | undefined; exchange?: string | null | undefined; hasForecast: boolean; }; /** @internal */ export declare const AvailableFuture$inboundSchema: z.ZodType; /** @internal */ export type AvailableFuture$Outbound = { symbol: string; type: string; asset_class_symbol: string; name: string; tick_size?: number | null | undefined; unit?: string | null | undefined; sku: string | null; code: string | null; price_file: string | null; market_date?: string | null | undefined; exchange?: string | null | undefined; has_forecast: boolean; }; /** @internal */ export declare const AvailableFuture$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 AvailableFuture$ { /** @deprecated use `AvailableFuture$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AvailableFuture$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AvailableFuture$Outbound` instead. */ type Outbound = AvailableFuture$Outbound; } export declare function availableFutureToJSON(availableFuture: AvailableFuture): string; export declare function availableFutureFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=availablefuture.d.ts.map