export * from "./exceptions";
export * from "./handlers/ErrorHandler";
export * from "./utils/ErrorUtils";
export * from "./interfaces/IError";
import { IErrorHandlerDeps, IErrorHandlerOptions, IErrorHandler } from "./interfaces/IErrorHandler";
export declare function createErrorHandler(deps: IErrorHandlerDeps, options?: IErrorHandlerOptions): IErrorHandler;
