import { Observable } from 'rxjs'; import { HttpOptions } from './types'; import { Injector } from '@angular/core'; export declare class McbHttpClient { private basePath; private injector; private http; private toast; constructor(basePath: string, injector: Injector); get(url: string, options?: HttpOptions): Observable; post(url: string, body: any, options?: HttpOptions): Observable; put(url: string, body: any, options?: HttpOptions): Observable; delete(url: string, options?: HttpOptions): Observable; private makeUrl; private makeHttpClientOptions; private makeBody; private processBodyFields; private mapResponse; }