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 FeatureTransformedHistoricalData = { xformFeatureCode: string; date: RFCDate; value: number; label?: string | null | undefined; }; /** @internal */ export declare const FeatureTransformedHistoricalData$inboundSchema: z.ZodType; /** @internal */ export type FeatureTransformedHistoricalData$Outbound = { xform_feature_code: string; date: string; value: number; label?: string | null | undefined; }; /** @internal */ export declare const FeatureTransformedHistoricalData$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 FeatureTransformedHistoricalData$ { /** @deprecated use `FeatureTransformedHistoricalData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FeatureTransformedHistoricalData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FeatureTransformedHistoricalData$Outbound` instead. */ type Outbound = FeatureTransformedHistoricalData$Outbound; } export declare function featureTransformedHistoricalDataToJSON(featureTransformedHistoricalData: FeatureTransformedHistoricalData): string; export declare function featureTransformedHistoricalDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=featuretransformedhistoricaldata.d.ts.map