import { AxiosError } from "axios"; import { RequestError } from "./RequestError"; export declare class NetworkRequestError extends RequestError { request: { host: string; path: string; method: string; data: any; params: any; }; constructor(error: AxiosError); }