export declare let tabId: string | null;
/**
 * We want to be able to identify what browser tab the user is looking at. We do this by identifying tabs through
 * random-generated IDs that are kept in session storage. To quote MDN:
 *
 * > sessionStorage is partitioned by both origin and browser tabs (top-level browsing contexts)
 */
export declare function initializeTabId(): void;
