package expo.modules.notifications.service.interfaces import expo.modules.notifications.notifications.model.Notification import expo.modules.notifications.notifications.model.NotificationBehavior interface PresentationDelegate { fun presentNotification(notification: Notification, behavior: NotificationBehavior?) fun getAllPresentedNotifications(): Collection fun dismissNotifications(identifiers: Collection) fun dismissAllNotifications() }