import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FeatureCategory, FeatureCategory$Outbound } from "./featurecategory.js"; export type SupplyData = { symbol: string; commodity: string; countryCode: string; country: string; date: Date; model: string; forecastedSupply: number; reportedSupply: number; reportingAgency: string; unit: string; featureContributions: Array | null; }; /** @internal */ export declare const SupplyData$inboundSchema: z.ZodType; /** @internal */ export type SupplyData$Outbound = { symbol: string; commodity: string; country_code: string; country: string; date: string; model: string; forecasted_supply: number; reported_supply: number; reporting_agency: string; unit: string; feature_contributions: Array | null; }; /** @internal */ export declare const SupplyData$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 SupplyData$ { /** @deprecated use `SupplyData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SupplyData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SupplyData$Outbound` instead. */ type Outbound = SupplyData$Outbound; } export declare function supplyDataToJSON(supplyData: SupplyData): string; export declare function supplyDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=supplydata.d.ts.map