import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { UserCustomer } from '../../classes/user-customer'; import { ApiResponse, OldApiResponse } from '../../classes/api-response'; import * as i0 from "@angular/core"; export declare class PersonalInfoService { private http; user_id: string; constructor(http: HttpClient); getAllUsers(): Observable; getUser(): Observable; updateUserInfo(body: {}): Observable; subscribeToNewsLetter(email: string): Observable>; getNewRecaptcha(): Observable; subscribeToNewsLetterRecaptcha(email: string, id: string, code: string): Observable; verifyMail(email: string): Observable; verifyVerificationToken(email: string, token: string): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }