import type { IVerdictCoverage } from './verdict-coverage.js'; /** * The RAW gap between what a verdict was asked to examine and what it examined, * as one sentence — or `undefined` when there is none. Acceptance is ignored * here on purpose: this answers "is there a gap?", and * {@link coverageShortfall} answers "does the gap veto a clean verdict?". * Keeping the two apart is what lets an accepted gap still be printed. * * capped → `capped at 2000 of 2101 files under ` * nothing to do → `0 wiring rules to examine — no wiringRules[] declared` * partial → `examined 2 of 3 registered tokens, 1 : C_H` */ export declare function coverageGap(c: IVerdictCoverage): string | undefined; //# sourceMappingURL=coverage-gap.d.ts.map