import { ApiService } from './api.service'; import { Observable } from 'rxjs'; export declare class PasswordService { private apiService; constructor(apiService: ApiService); reset(email: string, method?: string): Observable; resetByCode(code: string, password: string): Observable; resetPut(id: string, password: string): Observable; change(oldPassword: string, newPassword: string): Observable; }