/** * `memi report` — one self-contained design-health artifact (HTML + markdown * twin, optional SVG badge) composed from every persisted .memoire report. * Static files only: attach to a PR, upload as a CI artifact, or email — * explicitly not a web app. */ import type { Command } from "commander"; import type { MemoireEngine } from "../engine/core.js"; export declare function registerReportCommand(program: Command, engine: MemoireEngine): void;