import type { MapType } from '@xyo-network/xl1-protocol/protocol-lib'; import type { StoreKind } from './StoreKind.ts'; /** * Returns a local persistent map * @param dbName The name of the database * @param storeName The name of the store * @param storageRoot The root directory for storage (default is '.store' in the current working directory) * @param kind The kind of the map * @returns a map */ export declare const getLocalPersistentMap: (dbName: string, storeName: string, storageRoot?: string, kind?: StoreKind) => Promise>; /** Recursively deletes the on-disk storage directory for a local persistent map. */ export declare const deleteLocalPersistentMap: (dbName: string, storageRoot?: string, kind?: StoreKind) => Promise; //# sourceMappingURL=localPersistentMap.d.ts.map