/** * Help screen component. * * The `/help` layout lives in `../commands/registry.ts` as `HELP_LAYOUT` * (single source of truth, alongside the command metadata). This file * re-exports it under the historical `helpCategories` name so existing * callers (`App.ts`, `handlers.ts`) keep working, and owns the keyboard- * shortcuts panel (which is independent of commands). The actual rendering * is done by `App.ts`, which iterates `helpCategories` directly. */ export interface HelpCategory { title: string; items: Array<{ key: string; description: string; }>; } /** * Codeep command help data — re-exported from the registry so there's a * single source of truth for both `/help` rendering and `/` autocomplete. */ export declare const helpCategories: HelpCategory[]; /** * Keyboard shortcuts (independent of the command registry — raw key * bindings, not slash commands). */ export declare const keyboardShortcuts: { key: string; description: string; }[]; /** * Get total number of help pages */ export declare function getHelpTotalPages(screenHeight: number): number;