import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type MetricValue = { value: number; timestamp: number; }; /** @internal */ export declare const MetricValue$inboundSchema: z.ZodType; export declare function metricValueFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=metricvalue.d.ts.map