import { IIROSE_Bot } from '../../bot/bot';
export interface MessageDeletedData {
    type: 'message-deleted';
    userId: string;
    messageId: string;
    channelId: string;
    timestamp: number;
}
/**
 * 解析消息撤回数据
 * 公共频道格式: v0#用户ID_消息ID"
 * 私信格式: v0*消息接收方"消息撤回方_消息ID
 */
export declare function MessageDeleted(bot: IIROSE_Bot, message: string): MessageDeletedData | null;
