import { RepoManagerInterface } from "./Interfaces/RepoManagerInterface"; export interface DBConnection { username: string; password: string; port: number; uri: string; db: string; } export declare function makeRepositoryManager(connection?: DBConnection): Promise>;