/** * A Map that can grow beyond the map size limit using multiple maps. */ export declare class BigMap { private maps; private get lastMap(); set(key: K, value: V): void; get(key: K): V | undefined; }