import { HttpError } from './http-error.js';

declare class HttpResponseError extends HttpError {
    readonly code: number;
    readonly name: string;
    /**
     *
     * @param {Response} response
     */
    constructor(message: string, response: Response);
    static buildMessage(message: string, response: Response): string;
}

export { HttpResponseError };
