import type { ReviewReport } from "../review/contracts.js"; import type { ReviewRenderer } from "./registry.js"; export interface GitHubReviewPayload { event: "APPROVE" | "REQUEST_CHANGES" | "COMMENT"; body: string; comments: Array<{ path: string; line: number; side: "RIGHT"; body: string; }>; } export declare const githubReviewRenderer: ReviewRenderer; export declare function renderGitHubReview(report: ReviewReport): GitHubReviewPayload;