export default interface HttpRequestConfigInterface { url?: string; method?: string; baseURL?: string; headers?: any; params?: any; paramsSerializer?: (params: any) => string; data?: any; timeout?: number; withCredentials?: boolean; responseType?: string; xsrfCookieName?: string; xsrfHeaderName?: string; maxContentLength?: number; validateStatus?: (status: number) => boolean; maxRedirects?: number; httpAgent?: any; httpsAgent?: any; }