import { IConnectionOptions } from "./Utils"; import { MongoConnection } from "./Connection"; import { MongoCollection } from "./Definitions"; export declare class MongoAdapter extends MongoConnection { collections: typeof MongoCollection[]; constructor(options: IConnectionOptions); bootstrap(collections: typeof MongoCollection[]): Promise; _connected(): Promise; initCollection(collection: typeof MongoCollection): Promise; }