import type { Room } from "matrix-js-sdk/src/matrix";
import { NotificationLevel } from "../stores/notifications/NotificationLevel";
export declare const useUnreadNotifications: (room?: Room, threadId?: string) => {
symbol: string | null;
count: number;
level: NotificationLevel;
};