/** * Debug command handler with interactive menu. * * Provides tools for debugging, bug report generation, and system diagnostics. */ import { Container } from "@gajae-code/tui"; import type { InteractiveModeContext } from "../modes/types"; /** * Debug selector component. */ export declare class DebugSelectorComponent extends Container { #private; private ctx; constructor(ctx: InteractiveModeContext, onDone: () => void); handleInput(keyData: string): void; } /** * Show the debug selector. */ export declare function showDebugSelector(ctx: InteractiveModeContext, done: () => void): DebugSelectorComponent;