import type { TuituiOutboundInteractiveMessage } from '@qihoo/tuitui-bot-sdk'; import { type ChatType } from './chat_base'; export declare function tuituiEmojiReaction(account: any, target: string, chatType: ChatType, msgid: string, emoji: string): Promise; interface SendTextMsgOptions { channelTagName?: string; } export declare function sendTextMsg(account: any, chatId: string | undefined, chatType: ChatType, content: string, options?: SendTextMsgOptions): Promise; export declare function sendInteractiveMsg(account: any, chatId: string | undefined, chatType: ChatType, message: TuituiOutboundInteractiveMessage): Promise<{ msgid?: string; }>; export declare function modifyInteractiveTuituiMsg(account: any, chatId: string, chatType: ChatType, msgid: string, interactive: TuituiOutboundInteractiveMessage): Promise; export declare function sendMediaMsg(account: any, chatId: string | undefined, chatType: ChatType, mediaUrl: string, atList?: string[]): Promise; export {};