/** * Report Command Handler * * Renders a compact, one-screen manuscript-health dashboard by composing the * project's existing analyzers. Every section is independently guarded with its * own try/catch so that a single failing data source degrades gracefully * instead of crashing the whole report. The handler is strictly read-only — it * never writes to the database or to disk. */ import type { ParsedArgs, OutputFormatter } from '../types.js'; /** * Handle `/novel report`. * * Resolves the project id once, then renders each dashboard section behind its * own guard. Sections that depend on the database degrade to a dim notice when * the project is uninitialised or the data source throws. */ export declare function handleReportCommand(_args: ParsedArgs, projectPath: string, output: OutputFormatter): Promise; //# sourceMappingURL=report-handler.d.ts.map