/**
 * @fileoverview Formatter for architectural code reviews.
 *
 * This module enhances the output of architectural reviews by adding a list
 * of all files that were included in the review process.
 */
import { ReviewResult, FileInfo } from '../types/review';
/**
 * Format an architectural review to include the list of analyzed files
 * @param review The review result
 * @param outputFormat Output format (markdown or JSON)
 * @param files Array of file information objects that were analyzed
 * @returns The formatted review output
 */
export declare function formatArchitecturalReview(review: ReviewResult, outputFormat: 'markdown' | 'json', files: FileInfo[]): string;
