import { Subject } from 'rxjs'; import { ICommand, IEvent, IUnhandledExceptionPublisher, UnhandledExceptionInfo } from '../interfaces'; /** * Default implementation of the `IUnhandledExceptionPublisher` interface. */ export declare class DefaultUnhandledExceptionPubSub implements IUnhandledExceptionPublisher { private subject$; constructor(subject$: Subject>); publish(info: UnhandledExceptionInfo): void; }