/** * Map an evaluation verdict to a stable process exit code. JSON and human * output share the same result object, so the render mode cannot change the * exit status. CI relies on the process exit matching the artifact verdict. * * 0 -> pass * 1 -> fail * 2 -> invalid * 3 -> cancelled / timed out * 4 -> invocation / runtime / internal error */ export declare function verdictExitCode(verdict: "pass" | "fail" | "invalid" | "cancelled" | "error"): number; export declare function runEvaluationSelfProbe(options?: { root?: string; }): Promise<{ root: string; marker: string; }>; export declare function handleEvaluationCommand(args: string[]): Promise; //# sourceMappingURL=cli.d.ts.map