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 FeatureHistoricalData = { featureCode: string; date: RFCDate; value: number; strength?: number | null | undefined; phenologyStage?: string | null | undefined; }; /** @internal */ export declare const FeatureHistoricalData$inboundSchema: z.ZodType; /** @internal */ export type FeatureHistoricalData$Outbound = { feature_code: string; date: string; value: number; strength?: number | null | undefined; phenology_stage?: string | null | undefined; }; /** @internal */ export declare const FeatureHistoricalData$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 FeatureHistoricalData$ { /** @deprecated use `FeatureHistoricalData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FeatureHistoricalData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FeatureHistoricalData$Outbound` instead. */ type Outbound = FeatureHistoricalData$Outbound; } export declare function featureHistoricalDataToJSON(featureHistoricalData: FeatureHistoricalData): string; export declare function featureHistoricalDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=featurehistoricaldata.d.ts.map