import type RestResponse from "../RestResponse";
import RestError from "./RestError";
export default class RestResponseError extends RestError {
    readonly res: RestResponse;
    readonly method: string;
    readonly host: string;
    readonly pathname: string;
    readonly requestArgs: string;
    readonly requestBody: string;
    readonly responseHeaders: string;
    constructor(message: string, res: RestResponse);
}
//# sourceMappingURL=RestResponseError.d.ts.map