import { HttpClient, HttpHeaders } from '@angular/common/http'; import { Observable } from 'rxjs'; import { AuthApiConfiguration } from '../config/auth-api-configuration'; export declare class AuthApiService { private http; private config; protected uri: string; constructor(http: HttpClient, config: AuthApiConfiguration); confirmSignUp(data: any): Observable; checkUserExistByToken(data: any): Observable; changePassword(data: any): Observable; changePasswordAsAdmin(data: any): Observable; cognitoUpdateEmail(data: any): Observable; updateProfile(data: any, headers?: HttpHeaders): Observable; getProfile(headers?: HttpHeaders): Observable; cognitoVerifyUpdateEmail(data: any): Observable; } //# sourceMappingURL=auth-api.service.d.ts.map