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