/** * Help text builder — generates the inline help content shown by /help. */ import type { SlashCommandMetadata } from '../../utils/slash-command-loader.js'; export interface HelpTextOptions { /** Number of available harness modes (mode commands shown when > 1) */ modes: number; /** User-defined custom slash commands */ customSlashCommands: SlashCommandMetadata[]; } /** * Build the full help text as a plain string for inline display via showInfo(). */ export declare function buildHelpText(options: HelpTextOptions): string; //# sourceMappingURL=help-overlay.d.ts.map