import type { ReviewerWaitResult } from "./reviewer-waiter"; import type { ReviewGateOutputMode } from "../config/schema"; type ReviewerGateOutputOptions = { round?: number; maxRounds?: number; mode?: ReviewGateOutputMode; targetType?: "proposal" | "task"; targetUuid?: string; commentToolName?: string; }; export declare function attachReviewerMetadata(output: { title: string; metadata: unknown; }, title: string, agent: string, sessionId: string): void; export declare function attachReviewerGateResult(output: { output: string; metadata: unknown; }, waitResult: ReviewerWaitResult, reviewJobId: string, options?: ReviewerGateOutputOptions): void; export {};