export declare class HttpResponseError extends Error { name: string; code: number; url?: string; body?: any; method?: string; status?: number; errorMessage?: string; constructor(message: string, code: number, url?: string, body?: any); }