import React from 'react'; export interface NotificationsManagerContextType { unreadCount: number | undefined; setNotificationsRead: () => void; /** * undefined - async storage has not been loaded yet * null - async storage has been loaded but no value * Date - async storage has loaded and key was set */ lastReadAt: Date | null | undefined; } export declare const NotificationsManagerContext: React.Context; export declare const NotificationsManagerProvider: ({ children, }: { children?: React.ReactNode; }) => React.JSX.Element; export declare const useNotificationManager: () => NotificationsManagerContextType;