import type { CommandDef, CommandContext } from './types.js'; export declare function getCommand(name: string): CommandDef | undefined; export declare function listCommands(): CommandDef[]; export interface ExecuteResult { ok: boolean; error?: string; systemMessage?: string; } /** * Execute a named command with role checking. */ export declare function executeCommand(commandName: string, ctx: CommandContext, params: Record): ExecuteResult; //# sourceMappingURL=registry.d.ts.map