import { HttpErrorResponse } from '@angular/common/http'; import { Observable } from 'rxjs'; export declare class ServerError { code: number; labelNice: string; labelSystem: string; constructor(code: number, labelNice: string, labelSystem: string); } export declare class IqbComponentsConfig { id: string; name: string; } export declare class ErrorHandler { static handle(errorObj: HttpErrorResponse): Observable; }