import { AxiosInstance } from 'axios'; import type { RsponseType, XHRResponse } from './interface'; declare function http({ cancelHttp, ...newOptions }: RsponseType): Promise; declare const httpMultiPartInstance: AxiosInstance; declare function httpXMLInstance({ url, method, data, headers, cancelHttp, isAsync }: XHRResponse): Promise; export { http as default, http, httpMultiPartInstance, httpXMLInstance };