/** * `audit-code unaccept-results --work-item [--work-item …] | --all` * * Remove entries from the run's accepted host-results pair — the supported path * back out of an acceptance, per the recovery-verb doctrine: operator-facing, * refusing what it cannot validate (the strict accepted-ledger loader throws on * a corrupt pair), recording the removal so a repaired run stays * distinguishable from a clean one, and invalidating the persisted step * contract. After dropping, the next fold re-reads the bound result files. * * Argument validation lives in {@link dropAcceptedResults} — the ONE copy of * the "requires --work-item or --all" refusal; this command parses argv only. * * The run id resolves from the persisted review-run manifest, not an argv flag: * the operator names WHAT to drop, never WHERE the state lives. */ export declare function cmdUnacceptResults(argv: string[]): Promise; //# sourceMappingURL=unacceptResultsCommand.d.ts.map