/** * Object containing URLs for notification-related endpoints. * These URLs are used for various notification operations such as getting notifications, marking as read, etc. */ declare const notificationRoutesUrl: { module: string; /** * Endpoint to get notifications (notifications) */ notifications: string; /** * Endpoint to get unread count (unread-count) */ unreadCount: string; }; export { notificationRoutesUrl };