/// export interface AddNotification { id?: number; content?: JSX.Element; tag?: string; autoclose?: number; } export interface Notification { id: number; content: JSX.Element; tag: string; autoclose?: number; } export declare enum NotificationTags { DEFAULT = "default", DELETE_SELF = "delete_self", DELETE_PEER = "delete_peer", DELETE_PEER_FIRSTNAME = "delete_peer_firstname", DELETE_PEER_LASTNAME = "delete_peer_lastname", DELETE_PEER_FULLNAME = "delete_peer_fullname", ALL = "all" } export declare const DEFAULT_API: { notifications: Notification[]; setNotification: (_notification?: AddNotification) => any; clearNotification: (_id: number) => any; notificationsByTag: (_tag: NotificationTags) => Notification[]; }; export declare type NotificationsContextValue = typeof DEFAULT_API;