/** * Command Hub - Central registry for Slash Commands in Supen. * Handles rapid command execution without LLM latency. */ export interface CommandResponse { type: 'text' | 'card'; content: string; data?: any; } export declare class CommandHub { private static commands; /** Register core system commands */ static init(): void; static register(name: string, handler: (args: string[]) => Promise): void; /** New: Expose all registered command names */ static getCommandNames(): string[]; /** * Command router: checks if text is a slash command. */ static tryExecute(text: string): Promise; } //# sourceMappingURL=command-hub.d.ts.map