export interface ToastProp { title?: string; timestring: string; content: string; messageType: MessageType; } export declare enum NotificationType { banner = 0, toast = 1 } export declare enum MessageType { success = 0, warning = 1, error = 2, info = 3 } export interface Notification { text: string; type: NotificationType; messageType: MessageType; isHtml?: boolean; }