import { AxiosRequestConfig } from 'axios'; export declare class HttpService { static get(config: AxiosRequestConfig | undefined, path: string, params: any, id: string | number): Promise; static query(config: AxiosRequestConfig | undefined, path: string, params?: any): Promise; static post(config: AxiosRequestConfig | undefined, path: string, params: any): Promise; static put(config: AxiosRequestConfig | undefined, path: string, params: any, id: string | number): Promise; static delete(config: AxiosRequestConfig | undefined, path: string, params: any, id: string | number): Promise; }