import AnkartonConfig from "./AnkartonConfig"; export interface IAccount { login: string; password: string; email: string; nickname: string; } export interface IGuest { data: ICreateGuestResponse; xpassword: string; } export interface ICreateGuestResponse { id: number; type: string; login: string; nickname: string; security: any[]; lang: string; community: string; added_date: Date; added_ip: string; login_date: Date; login_ip: string; } export declare class Dofus { static activateAccount(account: IAccount): Promise; static createAccount(config: AnkartonConfig): Promise; private static axios; private static httpsAgent; private static readonly mailsac; private static proxy; private static getProxy(config); private static bypassCaptcha(); private static createGuest(); private static validateGuest(config, guestLogin, guestPassword); }