import { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; import { Observable } from 'rxjs'; export declare class HttpService { private readonly instance; constructor(instance?: AxiosInstance); request(config: AxiosRequestConfig): Observable>; get(url: string, config?: AxiosRequestConfig): Observable>; delete(url: string, config?: AxiosRequestConfig): Observable>; head(url: string, config?: AxiosRequestConfig): Observable>; post(url: string, data?: any, config?: AxiosRequestConfig): Observable>; put(url: string, data?: any, config?: AxiosRequestConfig): Observable>; patch(url: string, data?: any, config?: AxiosRequestConfig): Observable>; readonly axiosRef: AxiosInstance; }