import { Container } from "@oh-my-pi/pi-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;