import { DatabaseOptions } from "lmdb"; export default class GatsbyCacheLmdb { private db; private encoding; readonly name: string; readonly directory: string; readonly cache: GatsbyCacheLmdb; constructor({ name, encoding, }: { name: string; encoding?: DatabaseOptions["encoding"]; }); init(): GatsbyCacheLmdb; private static getStore; private getDb; get(key: any): Promise; set(key: string, value: T): Promise; del(key: string): Promise; } export declare function resetCache(): Promise;