import { Router } from "express";
interface Options {
    httpServer: any;
    router: Router;
    projectControl: any;
    clients: {
        [id: string]: any;
    };
    host: string;
    isPersonal: boolean;
}
export default function init({ httpServer, router, projectControl, clients, host, isPersonal, }: Options): void;
export {};
