import { ComponentRef } from '@angular/core'; import { ExceptionComponent } from './exception.component'; import { Observable } from 'rxjs'; import { InjectionService } from '../../injections/injection/injection.service'; export declare class ExceptionService { private injectionService; constructor(injectionService: InjectionService); /** * * @param description * @param title */ create(description: string, title: string): Observable>; /** * * @param componentRef */ destroy(componentRef: ComponentRef): void; /** * * @param componentRef */ load(componentRef: ComponentRef): Observable>; /** * * @param componentRef */ unload(componentRef: ComponentRef): Observable>; }