/** * Match the coding-agent interrupt key. * * Interactive mode installs a keybinding manager that exposes `app.interrupt` * globally, but some isolated component tests still run with only TUI * keybindings registered. In that case, fall back to raw Escape matching. */ export declare function matchesAppInterrupt(data: string): boolean; export declare function matchesSelectCancel(data: string): boolean; export declare function matchesAppExternalEditor(data: string): boolean;