import { AxiosRequestConfig, AxiosResponse } from 'axios'; /** * This function is called to better handle axios.get calls with logic that allows * the use of proxies. Not needed in tests unless specifically testing with proxies. * Check https://github.com/axios/axios/issues/3459#issuecomment-766171276 for more info. * @param url {string} - string representation of url to get * @param responseType {any} - optional parameter to change the data type needed from get * (ex. arraybuffer). In default it returns JSON */ export declare function axiosGet(url: string, options?: AxiosRequestConfig): Promise>;