import { type PlanResult } from "../../../internals/execute.js"; import { type CommandSpec, type PlanContext } from "../../../internals/plan.js"; /** * Drive the D14 cleanup library: `--rollback ` restores a prior backup; * otherwise a bare run previews (read-only) and `--apply` executes. Flag * refusals are typed usage errors (`AIH_CONFIG`); the library's own typed * errors are never caught, only surfaced. */ export declare function executeClaudeCleanupCommand(ctx: PlanContext): Promise; export declare const command: CommandSpec;