import { MongoConnection } from '../MongoConnection'; import { MongoDocument } from '../MongoTypes'; export declare function dbStats(client: MongoConnection, db: string): Promise; export declare function collStats(client: MongoConnection, db: string, collection: string): Promise; export declare function listDatabases(client: MongoConnection): Promise>; export declare function serverStatus(client: MongoConnection): Promise;