import * as Lowdb from "lowdb"; export interface Context { db: Lowdb.LowdbAsync; isVolatile: boolean; } export declare function storageExist(params: { dbType: string; dbPath: string; }): Promise; export declare function createContext(params: { dbType: string; dbPath: string; debug?: boolean; }): Promise; export declare function closeContext(context: Context): Promise;