import { HttpClient } from '@angular/common/http'; import 'rxjs/add/operator/map'; import { Observable } from 'rxjs/Observable'; export declare class AjaxListService { private urls; private http; constructor(urls: any, http: HttpClient); get(listType: string, params: any): Observable; post(listType: string, form: Object): Observable; }