import { HttpClient } from '@angular/common/http'; import { SharedService } from './shared.service'; import { ConfigService } from './config.service'; import { Observable } from 'rxjs'; export declare class LocalService { private http; private shared; private config; constructor(http: HttpClient, shared: SharedService, config: ConfigService); login(user: string | object, url?: string): Observable; signup(user: string | object, url?: string): Observable; }