import { IHttpClient } from "@noovolari/leapp-core/interfaces/i-http-client"; export declare class HttpClientProvider implements IHttpClient { private _accessToken; constructor(); get accessToken(): string; set accessToken(value: string); get(url: string): Promise; post(url: string, body: any): Promise; put(url: string, body: any): Promise; delete(url: string): Promise; private getHttpHeaders; }