export interface SbNotificationService { fetchNotificationList(): Promise; handleNotificationClick(notificationData: any): void; deleteNotification(notificationData: any): Promise; clearAllNotifications(notificationListData: any): Promise; }