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