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