interface LoginServiceAttrs { cmd: any; dotenvMe: any; yes: any; } declare class LoginService { cmd: any; dotenvMe: any; yes: any; log: any; requestUid: any; controller: any; abort: any; checkCount: any; constructor(attrs?: LoginServiceAttrs); run(): Promise; login(tip?: boolean): Promise; check(tip?: boolean): Promise; meFileContent(value: string): string; startingMessage(): string; doneMessage(meUid: string): string; get loginUrl(): string; get checkUrl(): string; } export { LoginService };