import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { OlapHistoryValuesByTimestamps, OlapHistoryValuesByTimestamps$Outbound } from "./olaphistoryvaluesbytimestamps.js"; export type OlapChartResponse = { dataPoints: OlapHistoryValuesByTimestamps; }; /** @internal */ export declare const OlapChartResponse$inboundSchema: z.ZodType; /** @internal */ export type OlapChartResponse$Outbound = { dataPoints: OlapHistoryValuesByTimestamps$Outbound; }; /** @internal */ export declare const OlapChartResponse$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 OlapChartResponse$ { /** @deprecated use `OlapChartResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OlapChartResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OlapChartResponse$Outbound` instead. */ type Outbound = OlapChartResponse$Outbound; } export declare function olapChartResponseToJSON(olapChartResponse: OlapChartResponse): string; export declare function olapChartResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=olapchartresponse.d.ts.map