import type { SlashCommandMetadata } from './slash-command-loader.js'; /** * Process a slash command by replacing variables and executing shell commands */ export declare function processSlashCommand(command: SlashCommandMetadata, args: string[], workingDir: string): Promise; /** * Format a command for display in help/autocomplete */ export declare function formatCommandForDisplay(command: SlashCommandMetadata): string; /** * Group commands by namespace for display */ export declare function groupCommandsByNamespace(commands: SlashCommandMetadata[]): Map; //# sourceMappingURL=slash-command-processor.d.ts.map