import { IKVStore, IKVStoreFindResult, StoreSearchParams } from './ikv-store.js'; export declare class LevelDbStore implements IKVStore { #private; constructor(storeRoot: string, networkName: string); get networkName(): string; close(useCaseName?: string): Promise; del(key: string, useCaseName?: string): Promise; get(key: string, useCaseName?: string): Promise; isEmpty(params?: StoreSearchParams): Promise; find(params?: StoreSearchParams): Promise>; findKeys(params?: StoreSearchParams): Promise>; put(key: string, value: any, useCaseName?: string): Promise; } //# sourceMappingURL=level-db-store.d.ts.map