import { BackgroundJobPollingStatus, Event, PropertyChangeEvent, PropertyEventMap, UiNotificationDo, UiNotificationPoller } from '../index'; export interface UiNotificationPollerSubscriptionStartEvent extends Event { notification: UiNotificationDo[]; } export interface UiNotificationPollerNotificationsEvent extends Event { notifications: UiNotificationDo[]; } export interface UiNotificationPollerEventMap extends PropertyEventMap { 'propertyChange:status': PropertyChangeEvent; 'subscriptionStart': UiNotificationPollerSubscriptionStartEvent; 'notifications': UiNotificationPollerNotificationsEvent; } //# sourceMappingURL=UiNotificationPollerEventMap.d.ts.map