import { Application } from "express"; import { ProjectControlFunction } from "@cocalc/server/projects/control"; interface Options { app: Application; httpServer: any; projectControl: ProjectControlFunction; isPersonal: boolean; } export default function init(opts: Options): void; export {};