export declare const cacheFolder: string; /** "global" get/set/del, so if cache isn't available all still works */ export declare let get: (key: any) => Promise; export declare let set: (key: any, val: T) => Promise; export declare let del: (key: any) => Promise; export declare const levelDbReady: Promise; export declare function initializeLevelDb(): Promise; export declare const traverse: (cb: any) => Promise; export declare const kill: () => Promise;