import type { ScannedFile } from '../orient.types.js'; /** * @purpose Render a detailed view of one or more files with full DBC contracts. * @invariant Renders file header block, then each exported entity with all DBC tags. * @invariant Functions show signatures; classes show methods. * @param files Scanned files to render in detail. * @param projectRoot Absolute project root. * @returns Array of formatted output lines. */ export declare function renderDetail(files: ScannedFile[], projectRoot: string): string[];