import type { ReviewAgentResult } from "./CodeReviewService.js"; export interface ReviewNormalizationResult { result: ReviewAgentResult; parsedFromJson: boolean; usedFallback: boolean; issues: string[]; } export declare const normalizeReviewOutput: (raw: string) => ReviewNormalizationResult; //# sourceMappingURL=ReviewNormalizer.d.ts.map