import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type JudgeRegressionOutput = { type: "REGRESSION"; min?: number | undefined; minDescription: string; max?: number | undefined; maxDescription: string; }; /** @internal */ export declare const JudgeRegressionOutput$inboundSchema: z.ZodType; /** @internal */ export type JudgeRegressionOutput$Outbound = { type: "REGRESSION"; min: number; min_description: string; max: number; max_description: string; }; /** @internal */ export declare const JudgeRegressionOutput$outboundSchema: z.ZodType; export declare function judgeRegressionOutputToJSON(judgeRegressionOutput: JudgeRegressionOutput): string; export declare function judgeRegressionOutputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=judgeregressionoutput.d.ts.map