import low from 'lowdb'; export declare const cloudbaseConfigDir: string; export declare function getAsyncDB(file: string, directory?: string): Promise>; export declare function getSyncDB(file: string, directory?: string): low.LowdbSync; export declare class LocalStore { db: any; dbKey: string; defaults: Schema; directory?: string; constructor(defaults: Schema, dbKey?: string, options?: { directory?: string; }); getDB(): Promise; get(key: keyof Schema): Promise; set(key: keyof Schema, value: any): Promise; push(key: keyof Schema, value: any): Promise; delete(key: keyof Schema): Promise; }