import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AvailableSupplyModels = { model: string; symbol: string; commodity: string; countries: Array; }; /** @internal */ export declare const AvailableSupplyModels$inboundSchema: z.ZodType; /** @internal */ export type AvailableSupplyModels$Outbound = { model: string; symbol: string; commodity: string; countries: Array; }; /** @internal */ export declare const AvailableSupplyModels$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 AvailableSupplyModels$ { /** @deprecated use `AvailableSupplyModels$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AvailableSupplyModels$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AvailableSupplyModels$Outbound` instead. */ type Outbound = AvailableSupplyModels$Outbound; } export declare function availableSupplyModelsToJSON(availableSupplyModels: AvailableSupplyModels): string; export declare function availableSupplyModelsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=availablesupplymodels.d.ts.map