import React from "react"; export type NotificationOptions = { title: string; subtitle?: string; kind?: "success" | "error" | "info" | "warning"; role?: "alert" | "log" | "status"; }; export type EnqueueNotification = (options: NotificationOptions) => void; export type NotificationContextValue = { enqueueNotification: EnqueueNotification; }; declare const NotificationContext: React.Context; export declare const useNotifications: () => NotificationContextValue; export default NotificationContext;