import { ErrorHandler } from '@angular/core'; import { ErrorInterface } from './ErrorInterface'; import { Factory as EntityFactory } from '../Entity/Factory'; import { Factory as HandlerFactory } from '../Handler/Factory'; export declare class Hook implements ErrorHandler { private entityFactory; private handlerFactory; constructor(entityFactory: EntityFactory, handlerFactory: HandlerFactory); handleError(error: ErrorInterface): void; }