import { Api } from 'telegram'; import { DogExt } from '../types/dogs'; import { NewMessageEvent } from 'telegram/events'; export declare class TgEventHelper { static getUpdateData({ update, dogs, }: { update: NewMessageEvent | Api.TypeUpdate | Api.TypeUpdates; dogs?: DogExt[]; }): Promise<{ upd: any; msg: any; msgText: any; fwdFrom: any; forward: any; peerId: any; chat: any; chatId: any; fromPeer: any; fromPeerUsername: any; senderId: any; sender: any; msgId: any; userId: any; client: any; isDog: boolean; fwdChatId: any; chatName: any; hashtags: import("../svc/bot/base/services/Dolist").DolistItem[]; danceWords: import("../svc/bot/base/services/Dolist").DolistItem[]; cloackWords: import("../svc/bot/base/services/Dolist").DolistItem[]; cloackPoints: import("../svc/bot/base/services/Dolist").DolistItem[]; notRuEng: import("../svc/bot/base/services/Dolist").DolistItem[]; triplers: import("../svc/bot/base/services/Dolist").DolistItem[]; links: any[]; mentions: any[]; isMultiplePhotos: boolean; isSinglePhoto: boolean; forwardFromAnother: any; }>; }