///
import * as express from "express";
import { Server } from "http";
import { RepoManagerInterface } from "../Repository/Interfaces/RepoManagerInterface";
export declare function startServer(server: express.Application, repoManager: RepoManagerInterface): Promise<{
server: Server;
db: Readonly;
}>;