import { HttpHeaders } from '@angular/common/http'; import { BaseHttpService } from '../base-http.service'; import { Observable } from 'rxjs/Observable'; import 'rxjs/add/operator/catch'; import 'rxjs/add/operator/map'; import 'rxjs/add/operator/do'; import 'rxjs/add/operator/toPromise'; import 'rxjs/add/operator/delay'; export declare class HttpClientService extends BaseHttpService { private clientId; private localStorageService; setClientId(_clientId: string): void; getApiContextPath(): any; getApiServerUrl(): any; getAccessToken(): string; getHttpHeader(isDebug?: boolean): HttpHeaders; ajaxDelete(ajaxUrl: string): Observable; ajaxPut(ajaxUrl: string, params: any): Observable; ajaxPost(ajaxUrl: string, params: any): Observable; ajaxGet(ajaxUrl: string, params: any): Observable; ajaxLoad(ajaxUrl: string): Observable; handleError(url: string, error: any): Observable; handleError1(url: string, error: any): Promise; formatUrl(ajaxUrl: string): string; bulidSearchString(action: string, params: any): URLSearchParams; }