///
import { EventEmitter } from "events";
import { IStore } from "./interfaces";
export declare class MongoStore extends EventEmitter implements IStore {
private options;
private client;
private db;
private collection;
constructor(options: any);
connect(): Promise;
isReady(): Promise;
disconnect(): Promise;
removeAll(): Promise;
remove(key: string): Promise;
get(keys: string[]): Promise;
set(mappings: any): Promise;
private connectRetry;
}
//# sourceMappingURL=mongo-store.d.ts.map