@magicbell/react-headless
Version:
Hooks to build a notification inbox
10 lines (9 loc) • 447 B
TypeScript
import { INotificationsStoresCollection } from '../../types/index.js';
/**
* Collection of notifications store. It contains all stores of notifications
* and exposes methods to interact with them.
*
* @private Use the `useNotifications` hook instead.
*/
declare const useNotificationStoresCollection: import("zustand").UseBoundStore<import("zustand").StoreApi<INotificationsStoresCollection>>;
export default useNotificationStoresCollection;