import { AbstractExceptionCatcher } from './abstract-exception.catcher'; export declare class ExceptionCatcherRegistry { private catchers; register(catcher: AbstractExceptionCatcher): void; getAll(): AbstractExceptionCatcher[]; }