import type { CreatableParams } from '@ariestools/sdk'; /** Filesystem and named-database configuration for an LMDB-backed map. */ export interface LmdbMapParams extends CreatableParams { /** LMDB root database name opened within the environment. */ dbName: string; /** Parent filesystem directory in which the LMDB environment is stored. */ location: string; /** Named store used to isolate this map within the environment. */ storeName: string; } //# sourceMappingURL=Params.d.ts.map