import { HttpClient, HttpParams } from '@angular/common/http'; import { Observable } from 'rxjs'; import { Router } from '@angular/router'; import { Location } from "@angular/common"; import { IEnvironmentsInfo } from '../Models/environmentsModel.info'; import * as i0 from "@angular/core"; export declare class BaseMenuService { private config; private http; private location; private route; constructor(config: IEnvironmentsInfo, http: HttpClient, location: Location, route: Router); private serviceUrl; get options(): IEnvironmentsInfo; private formatErrors; get(path: string, body?: Object, params?: HttpParams): Observable; put(path: string, body?: Object): Observable; post(path: string, body?: Object): Observable; postExcel(path: string, body?: Object): Observable; contractPost(path: string, body?: Object): Observable; delete(path: string, body?: Object): Observable; patch(path: string, body?: Object): Observable; postasync(path: string, body?: Object): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }