import type { SddBoardSnapshot } from '@wrongstack/sdd'; import type React from 'react'; /** * Full-screen live SDD board overlay (Ctrl+B in TUI). * * Renders the CLI-owned multi-agent SDD run as FORGE-style topological * dependency columns (Start / Phase N), with the live worker + worktree on * each card. Read-only mirror of the EventBus `sdd.board.snapshot`; steering * happens from the WebUI or slash commands. */ export declare function SddBoardOverlay({ snapshot, focusColumn, }: { snapshot: SddBoardSnapshot; focusColumn?: number | null | undefined; }): React.ReactElement; //# sourceMappingURL=sdd-board-overlay.d.ts.map