import { createContext } from 'react'; import type { NotificationCount } from './useNotificationCount'; export const NotificationCountContext = createContext({ unreadCount: 0, refreshCount: async () => {}, markSeen: async () => {}, });