import { FastMap } from './FastMap'; import { Collection } from './collections'; export declare class CollectionMap { collections: Record>; constructor(); getCollection(collectionName: any): Record>; get(collectionName: any, id: any): Collection<{}>; set(collectionName: any, id: any, value: any): void; del(collectionName: any, id: any): void; }