import { HttpClient, HttpHandler, HttpParams } from '@angular/common/http'; import { Observable } from 'rxjs'; import { LoadingIndicatorService } from "./loading-indicator.service"; import * as i0 from "@angular/core"; export declare class HttpClientService extends HttpClient { private loadingService; private headers; constructor(handler: HttpHandler, loadingService: LoadingIndicatorService); convertToHttpParams(obj: any): HttpParams; getJSON(url: string, body?: any | null): Observable; postJSON(url: string, body?: any | null): Observable; putJSON(url: string, body?: any | null): Observable; deleteJSON(url: string, body?: any | null): Observable; convertToFormData(obj: any): FormData; downloadFile(url: string, obj?: any): void; showLoading(message?: string): void; hideLoading(): void; getUrl(relativePath: string): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }