/** * AgentBoardroom CLI — `start` command * * Launches the Boardroom runtime: * 1. Loads board config * 2. Verifies OpenClaw agents exist * 3. Spawns persistent CEO/CTO sessions * 4. Schedules Auditor cron job * 5. Initializes channels * 6. Keeps running until stopped (SIGINT/SIGTERM) */ export interface StartOptions { config?: string; dir?: string; json?: boolean; dryRun?: boolean; verbose?: boolean; } export declare function startCommand(opts: StartOptions): Promise; //# sourceMappingURL=start.d.ts.map