import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PrometheusResponse } from "./prometheusresponse.js"; export type Prometheus = { response?: PrometheusResponse | undefined; }; /** @internal */ export declare const Prometheus$inboundSchema: z.ZodType; export declare function prometheusFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=prometheus.d.ts.map