/** * Forgen — Dashboard CLI (P3) * * `fgx status [--watch] [--json] [--interval N]` * ANSI box-drawing 기반 상태 대시보드. TUI 라이브러리 없음. */ export interface DashboardOptions { watch?: boolean; json?: boolean; intervalSec?: number; } export declare function runDashboard(opts: DashboardOptions): Promise;