export declare class LazyMap extends Map { private factory; constructor(factory: () => V, entries?: readonly (readonly [K, V])[] | null); get(key: K): V; /** * Retrieves the value for the specified key without creating it if it does not exist. * @param key The key to retrieve the value for. * If the key does not exist, it will return undefined. * @returns */ getRaw(key: K): V | undefined; } //# sourceMappingURL=lazyMap.d.ts.map