///
import RocksDB from "rocksdb";
export declare class KV {
private readonly location;
private rocksdb;
constructor(path: string);
init(): Promise;
get(key: string): Promise;
put(key: string, value: any): Promise;
del(key: string): Promise;
iterator(): RocksDB.Iterator;
}