export interface HttpError { error: string; message: string; name: string; ok: boolean; status: number; statusText: string; url: string; } export declare function instanceOfHttpError(obj: any): obj is HttpError;