export declare const getUnseenNotificationsBadge: () => Promise<{
    unseenNotificationCounter: number;
    lastUpdated: number;
}>;
export declare const setUnseenNotificationsBadge: (payload: {
    unseenNotificationCounter: number;
    lastUpdated: number;
}) => Promise<void>;
