import { AddNotificationOptions, NotificationItem } from "../.."; /** Context value for the notification system */ export type NotificationContextValue = { /** All current notification items (read by container) */ items: NotificationItem[]; /** Add a new notification and receive its id */ add: (options: AddNotificationOptions) => string; /** Remove a notification by id */ remove: (id: string) => void; /** Remove all notifications */ clear: () => void; }; /** Context for the notification system */ export declare const NotificationContext: import("react").Context; /** Access the notification system. Must be used inside a ``. */ export declare const useNotification: () => Omit; //# sourceMappingURL=context.d.ts.map