import { OnDestroy, OnInit, ElementRef, Renderer2 } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { AuthService, RoutingService, User, UserService } from '@spartacus/core'; import { Observable, Subscription } from 'rxjs'; export declare class LoginComponent implements OnInit, OnDestroy { private auth; private routing; private userService; private route; private elementRef; private renderer; user$: Observable; isLogin: boolean; subscription: Subscription; constructor(auth: AuthService, routing: RoutingService, userService: UserService, route: ActivatedRoute, elementRef: ElementRef, renderer: Renderer2); ngOnInit(): void; logout(): void; ngOnDestroy(): void; }