/** * API Service - Notification */ declare class AesirxNotificationApiService { route: any; constructor(); getNotifications: (memberId: any) => Promise; markRead: (notificationId: any, memberId: any) => Promise; markReadAll: (memberId: any) => Promise; render(): {}; } export { AesirxNotificationApiService as default };