import { Application } from "express";
import { ProjectControlFunction } from "smc-hub/servers/project-control";
interface Options {
    app: Application;
    httpServer: any;
    projectControl: ProjectControlFunction;
    isPersonal: boolean;
}
export default function init(opts: Options): void;
export {};
