import type { ScannedFile } from '../orient.types.js'; /** * @purpose Format a single file line in universal format. * @param file Scanned file with header and exports. * @param projectRoot Absolute project root for relative path display. * @returns Formatted line string. */ export declare function renderFileLine(file: ScannedFile, projectRoot: string): string; /** * @purpose Render a list of files in universal format. * @param files Scanned files to render. * @param projectRoot Absolute project root for relative path display. * @returns Array of formatted lines. */ export declare function renderFileList(files: ScannedFile[], projectRoot: string): string[];