import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { RFCDate } from "../../types/rfcdate.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PhenologyData = { location: string; crop: string; phenologyPhase: string; start: RFCDate; end: RFCDate; }; /** @internal */ export declare const PhenologyData$inboundSchema: z.ZodType; /** @internal */ export type PhenologyData$Outbound = { location: string; crop: string; phenology_phase: string; start: string; end: string; }; /** @internal */ export declare const PhenologyData$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 PhenologyData$ { /** @deprecated use `PhenologyData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PhenologyData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PhenologyData$Outbound` instead. */ type Outbound = PhenologyData$Outbound; } export declare function phenologyDataToJSON(phenologyData: PhenologyData): string; export declare function phenologyDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=phenologydata.d.ts.map