@@ -0,0 +1,6 @@
+export interface INotificationListItem {
+ ID: string;
+ status: 'unread' | 'already';
+ title: string;
+ removable: boolean;
+}