import { z } from "zod"; /** Bundled scalar goal judge: scores how well an output satisfies the input's goal. */ export declare function goalJudgeFile(): string; /** Structured verdict shape the goal judge returns (0..1 score + reasoning). */ export declare const ScalarVerdict: z.ZodObject<{ score: z.ZodNumber; reasoning: z.ZodString; }, z.core.$strip>; /** Render an agent output as the string a judge reads: strings pass through, * everything else is JSON so it reads as data rather than "[object Object]". * Top-level `undefined` (where JSON.stringify returns undefined) becomes "". */ export declare function asJudgeText(output: unknown): string;