import { EmptyObject } from "../../../../game/nlcore/elements/transition/type"; import { Notification } from "./type"; import React from "react"; interface NotificationsContext { register: (ref: React.RefObject) => void; unregister: (ref: React.RefObject) => void; getNotification: (ref: React.RefObject) => Notification | null; } export declare const NotificationsContext: React.Context; export declare function useNotificationsContext(): NotificationsContext; export {};