import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type SupplySeriesResponse = { data: Array>; }; /** @internal */ export declare const SupplySeriesResponse$inboundSchema: z.ZodType; /** @internal */ export type SupplySeriesResponse$Outbound = { data: Array>; }; /** @internal */ export declare const SupplySeriesResponse$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 SupplySeriesResponse$ { /** @deprecated use `SupplySeriesResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SupplySeriesResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SupplySeriesResponse$Outbound` instead. */ type Outbound = SupplySeriesResponse$Outbound; } export declare function supplySeriesResponseToJSON(supplySeriesResponse: SupplySeriesResponse): string; export declare function supplySeriesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=supplyseriesresponse.d.ts.map