import { Cell } from './reactive';

/**
 * Returns (creating if needed) the shadow revision cell for a Map/Set.
 * Exposed for tests; normal code does not need to call this directly.
 */
export declare function shadowCellFor(obj: Map<unknown, unknown> | Set<unknown>): Cell<number>;
export declare function ensureReactiveCollectionsPatched(): void;
