import { SbbNotificationToastRef } from './notification-toast-ref'; /** Interface for a simple notification toast component that has a message and a single action. */ export interface SbbTextOnlyNotificationToast { data: { message: string; }; notificationToastRef: SbbNotificationToastRef; } /** * A component used to open as the default notification toast, matching digital.sbb.ch spec. * This should only be used internally by the notification toast service. */ export declare class SbbSimpleNotification implements SbbTextOnlyNotificationToast { notificationToastRef: SbbNotificationToastRef; /** Data that was injected into the notification toast. */ data: { message: string; }; constructor(notificationToastRef: SbbNotificationToastRef, data: any); /** Dismisses the notification toast. */ dismiss(): void; }