/** * Human-readable keyboard shortcut reference for /shortcuts. * Emits markdown so the pager can render headings, tables, and code chips. * Built from defaultKeymap so the list cannot drift from real bindings. */ import { type KeyBinding } from "./keymap.js"; /** Pretty-print a normalized chord for humans. */ export declare function humanizeChord(chord: string): string; /** * Markdown document for the keyboard shortcuts pager. */ export declare function formatShortcutsReference(bindings?: readonly KeyBinding[]): string;