import { AxiosRequestConfig } from 'axios'; import HttpClient from './HttpClient'; /** * @hidden */ export default class HttpRestClient { protected client: HttpClient; constructor(endpoint: string, options?: Record); setConfig(config: AxiosRequestConfig): HttpRestClient; get(endpoint: string, params?: Record): Promise; post(endpoint: string, params?: Record): Promise; } //# sourceMappingURL=HttpRestClient.d.ts.map