export type NotificationInterface = { id: number; message?: string; title?: string; type: 'error' | 'info' | 'success' | 'warning'; variant?: 'critical' | 'standard'; }; export type NotificationsStore = { addNotification: (notification: Omit) => void; dismissNotification: (id: number) => void; notifications: NotificationInterface[]; }; export declare const useNotificationsStore: import("zustand").UseBoundStore>; //# sourceMappingURL=useNotificationsStore.d.ts.map