import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PrometheusResponseDroppedTarget = { /** * Address of target. */ address?: string | undefined; /** * Job of target. */ job?: string | undefined; /** * Path to metrics of target. */ metricsPath?: string | undefined; /** * URL scheme. */ scheme?: string | undefined; }; /** @internal */ export declare const PrometheusResponseDroppedTarget$inboundSchema: z.ZodType; export declare function prometheusResponseDroppedTargetFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=prometheusresponsedroppedtarget.d.ts.map