export type ReviewPriority = 0 | 1 | 2 | 3; export interface ReviewFinding { title: string; body: string; priority: ReviewPriority; confidenceScore?: number; filePath?: string; lineStart?: number; lineEnd?: number; } export interface ReviewOutput { type: 'review'; target: string; summary: string; findings: ReviewFinding[]; overallCorrectness: 'patch is correct' | 'patch is incorrect' | 'unknown'; overallExplanation: string; overallConfidenceScore?: number; generatedAt: number; source: 'model' | 'local'; } export declare function formatReviewMarkdown(review: ReviewOutput): string;