import { Connection } from '../../skychat/Connection.js'; import { RoomManager } from '../../skychat/RoomManager.js'; import { GlobalPlugin } from '../GlobalPlugin.js'; export declare class BunkerPlugin extends GlobalPlugin { static readonly commandName = "bunker"; readonly opOnly = true; readonly rules: { bunker: { minCount: number; maxCount: number; params: { name: string; pattern: RegExp; }[]; }; }; protected storage: boolean; constructor(manager: RoomManager); run(_alias: string, param: string, connection: Connection): Promise; handleBunker(param: string, connection: Connection): Promise; onNewMessageHook(message: string, connection: Connection): Promise; }