export default class ReactiveWeakMap implements WeakMap { private source; private atom; private collection?; constructor(source: WeakMap); delete(key: K): boolean; get [Symbol.toStringTag](): string; get(key: K): V | undefined; set(key: K, value: V): this; has(key: K): boolean; }