import { Db, Collection } from 'mongodb';
export default function getConnection(): Promise<Db>;
export declare function getCollection<T>(collectionName: string): Promise<Collection<T>>;
export declare function clean(): Promise<void>;
