import { Api } from 'telegram'; import { NewMessageEvent } from 'telegram/events'; export declare function deleteMessage({ message }: { message: Api.Message; }): Promise; export declare function sendToAdmins({ update, message, adminIds, }: { update: NewMessageEvent; message: object; username?: string; adminIds: number[]; }): Promise; export declare function sendToAdmin({ update, logMessage, adminId, }: { update: NewMessageEvent; logMessage: any; username?: string; adminId: number; }): Promise; export declare function replyWithDelete({ text, timeout }: { text: string; timeout?: number; }): Promise; export declare function sendWithDelete({ text, chatId, timeout, }: { chatId: string | number; text: string; timeout?: number; }): Promise; export declare const getRulesMessage: (user: any) => string; export declare const getRealtyGroups: () => string; export declare const getWttGroups: () => string; export declare const getAdsGroups: () => string; export declare const getEmojiNum: (num: number) => void;