/** * Markdown body for `/help` and Ctrl+G command reference. * * Uses bullet lists (not tables): usage strings often contain `|` and `<>` * which break markdown table cell parsing in our renderer (even when escaped). */ import type { CommandHelpEntry } from "../../app/commands/registry.js"; /** * Format one command as a markdown list item. * Command + usage stay in a single backtick span so `|` / `<>` are literal. */ export declare function formatHelpEntry(entry: CommandHelpEntry): string; /** * Format the slash-command catalog as a clean markdown reference. */ export declare function formatCommandHelpMarkdown(entries: readonly CommandHelpEntry[]): string;