import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { HttpSecret } from "./models/admin.model"; import * as i0 from "@angular/core"; export declare class HttpService { private httpClient; private secret; private base_url; constructor(httpClient: HttpClient); private getHeaders; get(url: string, params?: any): Observable; post(url: string, data: any): Observable; put(url: string, data: any): Observable; delete(url: string): Observable; setSelectedServer(data: HttpSecret): void; checkForSecret(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }