import React from 'react'; import { Notification, NotificationAction } from '../types'; type NotificationContextProps = { notifications: Notification[]; notificationCount: number; updateNotificationCount: React.Dispatch>; dispatch: React.Dispatch; }; export declare const NotificationContext: React.Context; type NotificationContextProviderProps = { children: React.ReactNode; }; export declare const NotificationContextProvider: React.FC; export {}; //# sourceMappingURL=NotificationContext.d.ts.map