/** * Help Command Handler * Lists all registered commands or shows help for a specific command. */ import type { CommandRegistry } from '../registry.js'; /** * Handle the /novel help command. * * @param args - Positional arguments; args[0] is an optional command name. * @param registry - The CommandRegistry instance to query. * @returns Formatted help string. */ export declare function handleHelpCommand(args: string[], registry: CommandRegistry): string; //# sourceMappingURL=help-handler.d.ts.map