/** * CLI Commands for TUI and Dashboard monitoring * Phase 8: Real-time test execution visualization */ import { Command } from 'commander'; /** * Monitor command - Run tests with TUI */ export declare const monitorCommand: (pack: string | undefined, options: { mode?: string; retries?: string; timeout?: string; docker?: boolean; }) => Promise; /** * Dashboard command - Run tests with web dashboard */ export declare const dashboardCommand: (pack: string | undefined, options: { port?: string; host?: string; autoOpen?: boolean; }) => Promise; /** * Create monitor and dashboard commands */ export declare function createMonitorCommands(): Command; export declare function createDashboardCommand(): Command;