export declare enum Doaction { Log = 1, Delete = 3, Mute = 4, SendMessage = 5, Ban = 9 } export declare class DolistItem { words?: string[]; preciseTexts?: string[]; } export declare class Dolist { static getMatches({ text, items }: { text: string; items: DolistItem[]; }): DolistItem[]; static loadAllow(): Promise; static loadAds(): Promise; static loadAvito(): Promise; static loadAnotherGroups(): Promise; static loadStopFull(): Promise; static loadStopNicks(): Promise; static loadWtt(): Promise; static loadRealty(): Promise; static loadWarningEmoji(): Promise; static loadStopEmoji(): Promise; static loadSpam(): Promise; static loadMat(): Promise; static loadFlyBox(): Promise; static loadDrugs(): Promise; static loadWorks(): Promise; static loadUnknown(): Promise; }