import { Notification } from './notification'; import { NotificationOptions } from './notification-options'; export interface NotificationRef { id: string; notification: Notification; options: NotificationOptions; } export interface NotificationOutput { item: NotificationRef; dismiss: () => void; } //# sourceMappingURL=notification-ref.d.ts.map