import type { Bot } from 'grammy'; export declare function telegramSetReaction(params: { bot: Bot; chatId: string; messageId: number; emoji: string; }): Promise; export declare function telegramEditMessage(params: { bot: Bot; chatId: string; messageId: number; text: string; }): Promise; export declare function telegramDeleteMessage(params: { bot: Bot; chatId: string; messageId: number; }): Promise; export declare function telegramSendPoll(params: { bot: Bot; chatId: string; question: string; options: string[]; threadId?: number; }): Promise;