import { Connection } from '../../../skychat/Connection.js'; import { Message } from '../../../skychat/Message.js'; import { RoomPlugin } from '../../RoomPlugin.js'; export declare class MentionPlugin extends RoomPlugin { static readonly commandName = "mention"; callable: boolean; run(): Promise; onBeforeMessageBroadcastHook(message: Message, connection: Connection): Promise; }