import { IPageNotificationGroup } from './PageNotificationGroup'; interface IPageNotifications { notificationsDrawerOpen: boolean; setNotificationsDrawerOpen: (setter: ((notificationsDrawerOpen: boolean) => boolean) | boolean) => void; notificationGroups: Record; setNotificationGroups: (setter: (notificationGroups: Record) => Record) => void; } export declare const usePageNotifications: import("zustand").UseBoundStore>; export {};