export declare function find(dbName: string, tableName: string): Promise; export declare function count(dbName: string, tableName: string): Promise; export declare function findById(dbName: string, tableName: string, id: string): Promise; export declare function save(dbName: string, tableName: string, docs?: any): Promise; export declare function removeById(dbName: string, tableName: string, id: string): Promise<1 | 0>; export declare function removeManyById(dbName: string, tableName: string, ids: string[]): Promise; export declare function clear(dbName: string, tableName: string): Promise; export declare function clearDatabase(): Promise;