/** * `agent-bober reject --feedback ` — reject a pending * disk-marker checkpoint by writing .bober/approvals/.rejected.json. * * Stateless: does not talk to the orchestrator; communicates via filesystem. * Works from any cwd inside the project (findProjectRoot() walks upward). * * Sprint 9 — colocated CLI command per Sprint 8/10 precedent. */ import type { Command } from "commander"; /** * Resolve the rejector identity from the environment. * Uses $USER (macOS/Linux) or $USERNAME (Windows), falling back to "unknown". */ export declare function resolveRejecter(): string; export declare function registerRejectCommand(program: Command): void; //# sourceMappingURL=reject.d.ts.map