import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type OlapStatsGraphResponse = { /** * Dates of historical statistics */ historicalDates: Array; /** * Values of historical statistics */ historicalValues: Array; /** * Current value */ currentValue?: number | undefined; }; /** @internal */ export declare const OlapStatsGraphResponse$inboundSchema: z.ZodType; /** @internal */ export type OlapStatsGraphResponse$Outbound = { historicalDates: Array; historicalValues: Array; currentValue?: number | undefined; }; /** @internal */ export declare const OlapStatsGraphResponse$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 OlapStatsGraphResponse$ { /** @deprecated use `OlapStatsGraphResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OlapStatsGraphResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OlapStatsGraphResponse$Outbound` instead. */ type Outbound = OlapStatsGraphResponse$Outbound; } export declare function olapStatsGraphResponseToJSON(olapStatsGraphResponse: OlapStatsGraphResponse): string; export declare function olapStatsGraphResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=olapstatsgraphresponse.d.ts.map