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