import type { Keybinding, KeybindingsManager } from '@earendil-works/pi-tui'; export type KeyTextFormatOptions = { capitalize?: boolean; }; export declare function formatKeyText(key: string, options?: KeyTextFormatOptions): string; export declare function formatKeyIds(manager: KeybindingsManager, id: Keybinding, options?: KeyTextFormatOptions): string; export declare function keyHint(manager: KeybindingsManager, id: Keybinding, description: string): string; export interface TuiHotkeyExtensionShortcut { key: string; description?: string; } /** Human-readable shortcut list for `/hotkeys` (resolved keys, pi-style). */ export declare function formatXopcTuiHotkeys(manager: KeybindingsManager, extensionShortcuts?: TuiHotkeyExtensionShortcut[]): string;