import type { Bot, Context } from 'grammy'; import type { MessageBus } from '@xopcai/xopc/infra/bus/index.js'; export declare function sendTelegramAckReaction(params: { bot: Bot; chatId: number | string; messageId: number; emoji: string; }): Promise; export declare function handleTelegramMessageReaction(params: { ctx: Context; accountId: string; bus: MessageBus; mode?: 'off' | 'own' | 'all'; }): Promise;