/** * `memi baseline` — accept current findings as team debt so gates only fail * on NEW findings, and inspect what the baseline currently suppresses. * * Acceptance is loud by design: the accept command prints exactly how much * debt was accepted, and status always shows suppressed counts — a baseline * must never quietly hide problems. */ import type { Command } from "commander"; import type { MemoireEngine } from "../engine/core.js"; export declare function registerBaselineCommand(program: Command, engine: MemoireEngine): void;