import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MetricType } from "./metrictype.js"; /** * Information about a metric. */ export type Metric = { /** * Unique identifier for the metric. */ slug: string; /** * Human-readable name for the metric. */ displayName: string; type: MetricType; }; /** @internal */ export declare const Metric$inboundSchema: z.ZodMiniType; export declare function metricFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=metric.d.ts.map