import { HealthReport } from '../types'; export type OutputFormat = 'console' | 'json' | 'sarif'; /** * Format a health report into the requested output format. */ export declare function formatReport(report: HealthReport, format: OutputFormat): string; export { formatConsole } from './console'; export { formatJson } from './json'; export { formatSarif } from './sarif'; //# sourceMappingURL=index.d.ts.map