import { ToastNotificationTypes } from '../enums/toast-notification-types.enum'; export interface ToastNotificationMessage { content: string; type: ToastNotificationTypes; id?: string; href?: string; unique?: boolean; timeout?: number; _timeoutId?: any; automationPostFix?: string; showClose?: boolean; toastClicked?(event: MouseEvent, toast: ToastNotificationMessage): void; } //# sourceMappingURL=toast-notification-message.interface.d.ts.map