/** * `agent-bober approve [--edit ]` — resolve a pending * disk-marker checkpoint by writing .bober/approvals/.approved.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 approver identity from the environment. * Uses $USER (macOS/Linux) or $USERNAME (Windows), falling back to "unknown". */ export declare function resolveApprover(): string; export declare function registerApproveCommand(program: Command): void; //# sourceMappingURL=approve.d.ts.map