import { type NotificationKind } from '../lib/constants'; export interface BarNotification { id: string; kind: NotificationKind; message: string; accentColor: string; activate: () => void; } export declare function useBarNotifications(): BarNotification[];