import MongoDB from 'mongodb';
/**
 * Type describing the (global) state of a DB.
 * @author Benedikt Arnarsson
 */
type DbState = {
    isInitialized: boolean;
    schemaVersionTag: string;
    initDB: Promise<string[]>;
    db: MongoDB.Db;
    client: MongoDB.MongoClient;
};
export default DbState;
