import { Result } from '../domain/result'; import { HttpServiceError } from '../domain/http-service-error'; export declare class HttpService { private readonly axiosService; constructor(baseUrl: string); get(path: string, params?: Object): Promise>; private getError; }