import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { RcApiService } from '../rc-api/rc-api.service'; import { RcEventBusService } from '../rc-event-bus/rc-event-bus.service'; export declare class RcAuthService { private environment; private api; private http; private eventBus; authUrl: string; constructor(environment: any, api: RcApiService, http: HttpClient, eventBus: RcEventBusService); login(username: string, password: string, recaptchaToken: string): Observable; OTPSend(username: string, phoneNumber: string, recaptchaToken: string): Observable; OtpConfirm(username: string, OtpCode: number, recaptchaToken: string, claims: any): Observable; generateToken(userClaims: any): Observable; facebookLogin(accessToken: string): Observable; logout(): void; refreshToken(): Observable; }