import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PerformanceMetricResult = { metric: string; date?: string | null | undefined; horizon: number; value: number; }; /** @internal */ export declare const PerformanceMetricResult$inboundSchema: z.ZodType; /** @internal */ export type PerformanceMetricResult$Outbound = { metric: string; date?: string | null | undefined; horizon: number; value: number; }; /** @internal */ export declare const PerformanceMetricResult$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 PerformanceMetricResult$ { /** @deprecated use `PerformanceMetricResult$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PerformanceMetricResult$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PerformanceMetricResult$Outbound` instead. */ type Outbound = PerformanceMetricResult$Outbound; } export declare function performanceMetricResultToJSON(performanceMetricResult: PerformanceMetricResult): string; export declare function performanceMetricResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=performancemetricresult.d.ts.map