export interface ToastProp { title?: string; timestring: string; content: string; } export declare enum NotificationType { banner = 0, toast = 1 } export interface Notification { text: string; type: NotificationType; }