import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const Aggregation: { readonly Mean: "mean"; readonly None: "none"; }; export type Aggregation = ClosedEnum; export type EvalMetric = { id: string; aggregation?: Aggregation | undefined; higherIsBetter?: boolean | undefined; description?: string | undefined; additionalProperties?: { [k: string]: any; } | undefined; }; /** @internal */ export declare const Aggregation$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Aggregation$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EvalMetric$inboundSchema: z.ZodType; /** @internal */ export type EvalMetric$Outbound = { id: string; aggregation: string; higher_is_better: boolean; description?: string | undefined; [additionalProperties: string]: unknown; }; /** @internal */ export declare const EvalMetric$outboundSchema: z.ZodType; export declare function evalMetricToJSON(evalMetric: EvalMetric): string; export declare function evalMetricFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=evalmetric.d.ts.map