import { DoEntity, Event, EventHandler, UiNotificationSystem } from '../index';
export interface UiNotificationEvent<TSource = UiNotificationSystem> extends Event<TSource> {
    id: string;
    topic: string;
    creationTime: Date;
    message?: DoEntity;
}
export type UiNotificationHandler = EventHandler<UiNotificationEvent>;
//# sourceMappingURL=UiNotificationEvent.d.ts.map