/** * AgentBoardroom CLI — `stop` command * * Gracefully shuts down the Boardroom runtime: * 1. Loads runtime state * 2. Cancels Auditor cron jobs * 3. Sends shutdown notification to channels * 4. Saves final state * 5. Signals the running process to exit (if PID-based) */ export interface StopOptions { dir?: string; json?: boolean; force?: boolean; } export declare function stopCommand(opts: StopOptions): Promise; //# sourceMappingURL=stop.d.ts.map