/** * Command Registry */ import type { Command } from './types.js'; export declare const commandRegistry: Map; export declare function getCommand(commandName: string): Command | undefined; export declare function getAllCommands(): Command[]; export declare function getAvailableCommands(): string[]; //# sourceMappingURL=command-registry.d.ts.map