import { InternalAxiosRequestConfig } from "axios"; declare const http: import("axios").AxiosInstance; export declare type AxiosConfig = InternalAxiosRequestConfig; export declare type AxiosConfigCallback = (config: AxiosConfig) => AxiosConfig; declare function httpGet(url: string, data?: V, config?: AxiosConfigCallback): Promise; declare function httpPost(url: string, data?: V, params?: any, config?: AxiosConfigCallback): Promise; declare function httpPostJson(url: string, data: any, params?: any, config?: AxiosConfigCallback): Promise; export { http, httpPost, httpGet, httpPostJson };