import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PrometheusResponsePrometheusVersion = { /** * Version of Go used to build Prometheus. */ goVersion?: string | undefined; /** * Revision of Prometheus. */ revision?: string | undefined; /** * Version of Prometheus. */ version?: string | undefined; }; /** @internal */ export declare const PrometheusResponsePrometheusVersion$inboundSchema: z.ZodType; export declare function prometheusResponsePrometheusVersionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=prometheusresponseprometheusversion.d.ts.map