/** * Monitor Command * Display real-time status of a feature loop */ export interface MonitorOptions { /** Use bash script monitor instead of built-in */ bash?: boolean; /** Use Python TUI monitor */ python?: boolean; /** Refresh interval in seconds */ interval?: number; } /** * Launch the monitoring dashboard for a feature */ export declare function monitorCommand(feature: string, options?: MonitorOptions): Promise;