import express from "express";
interface Options {
    projectControl: any;
    isPersonal: boolean;
    nextServer: boolean;
    proxyServer: boolean;
    nocoDB?: boolean;
    cert?: string;
    key?: string;
}
export default function init(opts: Options): Promise<{
    httpServer: any;
    router: express.Router;
}>;
export {};
