//#region src/infra/map-size.d.ts /** Prunes a Map in insertion order until it fits the requested maximum size. */ declare function pruneMapToMaxSize(map: Map, maxSize: number): void; //#endregion export { pruneMapToMaxSize as t };