import { BaseCache } from '../interfaces/base-cache.js'; export declare class LmdbCache implements BaseCache { private readonly dataPath; private database; constructor({ path }: { path: string; }); init(): Promise; addLoader(loaderId: string, chunkCount: number): Promise; getLoader(loaderId: string): Promise<{ chunkCount: number; }>; hasLoader(loaderId: string): Promise; loaderCustomSet>(loaderCombinedId: string, value: T): Promise; loaderCustomGet>(loaderCombinedId: string): Promise; loaderCustomHas(loaderCombinedId: string): Promise; deleteLoader(loaderId: string): Promise; loaderCustomDelete(loaderCombinedId: string): Promise; }