import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SupplyData, SupplyData$Outbound } from "./supplydata.js"; export type GetSupplyResponse = { success?: true | undefined; data: Array; }; /** @internal */ export declare const GetSupplyResponse$inboundSchema: z.ZodType; /** @internal */ export type GetSupplyResponse$Outbound = { success: true; data: Array; }; /** @internal */ export declare const GetSupplyResponse$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 GetSupplyResponse$ { /** @deprecated use `GetSupplyResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetSupplyResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetSupplyResponse$Outbound` instead. */ type Outbound = GetSupplyResponse$Outbound; } export declare function getSupplyResponseToJSON(getSupplyResponse: GetSupplyResponse): string; export declare function getSupplyResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getsupplyresponse.d.ts.map