import { Api, TelegramClient } from '..'; import { DateTime } from 'luxon'; import { Dog, ProxyItem } from 'dprx-types'; export declare class DogExt extends Dog { client?: TelegramClient; clientParams?: TelegramClient; chats?: Api.TypeChat[]; proxyItem?: ProxyItem; connectedDate?: DateTime; profile?: DogExtProfile; } export type DogExtProfile = { id: string; about: string | undefined; firstName: string | undefined; lastName: string | undefined; username: string | undefined; phone: string | undefined; deleted: boolean | undefined; }; export type TTwoFaSettings = { currentPassword?: string; newPassword: string; hint: string; };