/** * A map to store hydration states between snapshot instances. * K->V: main thread snapshotInstance IDs -> background snapshotInstance IDs. * * The map is used by the ref system to translate between snapshot instance IDs when * operations need to cross the thread boundary during the commit phase. */ declare const hydrationMap: Map; export {};