/** * Telegram sends `/cmd@BotUsername` in groups and from the command menu; registries * store commands as `cmd` only, so strip the @bot suffix before lookup. */ export declare function normalizeTelegramCommandName(command: string): string; /** * Parse a `/command` from message text. Handles: * - `/cmd@BotName` and arguments * - Multiline: voice STT text before a line that starts with `/` (Telegram caption after transcript) */ export declare function parseSlashCommand(text: string): { command: string; args: string; } | null;