import type { ProjectStructure, TechStack, ProjectMetrics, CodeComplexity, CodeSmell } from '../types/index.js'; export declare function formatProjectStructure(structure: ProjectStructure): string; export declare function formatTechStack(stack: TechStack): string; export declare function formatProjectMetrics(metrics: ProjectMetrics): string; export declare function formatComplexity(complexity: CodeComplexity): string; export declare function formatCodeSmells(smells: CodeSmell[]): string; export declare function formatBytes(bytes: number): string; export declare function formatJSON(data: any): string; //# sourceMappingURL=formatters.d.ts.map