import { Connection } from '../../../skychat/Connection.js'; import { GlobalPlugin } from '../../GlobalPlugin.js'; export declare class AvatarPlugin extends GlobalPlugin { static readonly DEFAULT_AVATAR: string; static readonly defaultDataStorageValue: string; static readonly commandName = "avatar"; static readonly commandAliases: never[]; readonly minRight = 0; readonly rules: { avatar: { minCount: number; maxCount: number; coolDown: number; params: { name: string; pattern: RegExp; info: string; }[]; }; }; run(alias: string, param: string, connection: Connection): Promise; }