export interface ReviewFeedback { line: number; selectedText: string; comment: string; } /** * Starts a local HTTP server to host the review UI, opens the browser, * and waits for the user to submit feedback. */ export declare function startReviewServer(artifactPath: string, taskId: string): Promise;