/** * `openlore coverage-gaps` — the structural test-coverage gap report's CLI surface * (change: add-test-coverage-gap-report). * * Prints the conclusion-shaped ranked list of important code with NO reaching test * (the same report the `report_coverage_gaps` MCP tool returns) so a reviewer or CI * job can audit the untested surface without an MCP client. Read-only, deterministic, * offline. SOUND DIRECTION ONLY: it reports "no reaching test" and never claims a * symbol is tested. Not a hook and never blocks — it is a report. */ import { Command } from 'commander'; export interface CoverageGapsCliOptions { cwd?: string; max?: number; filePattern?: string; base?: string; symbols?: string[]; json?: boolean; } export declare function runCoverageGapsCli(opts: CoverageGapsCliOptions): Promise; export declare const coverageGapsCommand: Command; //# sourceMappingURL=coverage-gaps.d.ts.map