export interface VerificationResult { valid: boolean; reason?: string; } /** * Verifies that a subagent's result.json exists, matches the expected schema, * and meets quality thresholds (non-empty summary, confidence >= 0.5). */ export declare class OutputVerifier { private readonly defaultCwd; constructor(defaultCwd?: string); /** * Verify the output for a given task. * @param task_id The task identifier. * @param cwd Optional working directory override (defaults to constructor value). */ verify(task_id: string, cwd?: string): VerificationResult; } //# sourceMappingURL=output-verifier.d.ts.map