import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PerformanceMetric = { metric: string; description: string; }; /** @internal */ export declare const PerformanceMetric$inboundSchema: z.ZodType; /** @internal */ export type PerformanceMetric$Outbound = { metric: string; description: string; }; /** @internal */ export declare const PerformanceMetric$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PerformanceMetric$ { /** @deprecated use `PerformanceMetric$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PerformanceMetric$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PerformanceMetric$Outbound` instead. */ type Outbound = PerformanceMetric$Outbound; } export declare function performanceMetricToJSON(performanceMetric: PerformanceMetric): string; export declare function performanceMetricFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=performancemetric.d.ts.map