import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { CoreConfigService } from '../config/core-config.service'; export declare class AccountService { private http; private configService; constructor(http: HttpClient, configService: CoreConfigService); get(): Observable; save(account: any): Observable; }