import { GlobalPlugin } from '../../GlobalPlugin.js'; /** * The kick plugin allows to force the disconnection of all the connections belonging to a session */ export declare class KickPlugin extends GlobalPlugin { static readonly commandName = "kick"; readonly minRight: number; readonly opOnly: boolean; readonly rules: { kick: { minCount: number; maxCount: number; params: { name: string; pattern: RegExp; }[]; }; }; run(alias: string, param: string): Promise; }