import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Answer = string | number; export type JudgeOutput = { analysis: string; answer: string | number; }; /** @internal */ export declare const Answer$inboundSchema: z.ZodType; export declare function answerFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const JudgeOutput$inboundSchema: z.ZodType; export declare function judgeOutputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=judgeoutput.d.ts.map