import { Method as AxiosMethod } from 'axios'; declare class RequestUtils { static getDataFrom(url: string, responseType?: null, method?: AxiosMethod): Promise; static loadHtml(url: string): Promise; } export { RequestUtils };