import type React from 'react'; export interface HelpEntry { /** Key chord or command, e.g. `Ctrl+F` or `/model`. */ keys: string; /** What it does. */ desc: string; } export interface HelpSection { title: string; entries: HelpEntry[]; } /** * Static cheat-sheet content: keybindings + common slash commands, grouped by * area. Pure data (no JSX) so the exact set of entries is unit-testable and the * overlay renders identically everywhere. */ export declare function helpSections(): HelpSection[]; /** * Full-width modal cheat-sheet overlay (opened with `?` on an empty prompt, * closed with Esc / `?` / `q`). Mirrors the bordered-panel look of the monitor * overlays so it sits naturally in the bottom region. Two columns: the key * chord (accent) and its description (dim), with the key column padded to a * shared width so descriptions align. The Tool Colors section uses two sub-columns * so all legend entries fit without scrolling. */ export declare function HelpOverlay(): React.ReactElement; //# sourceMappingURL=help-overlay.d.ts.map