import { Cache } from './Cache'; export default class MeasurementStore | ReadonlyArray, V> implements Cache { map: WeakMap; get(key: T): V | null | undefined; has(key: T): boolean; set(key: T, value: V): void; reset(): void; }