export type RegistryServerOptions = { file: string; host: string; port: number; }; export declare function startCollabServerForRegistry(options: { file: string; port: number; }): Promise; export declare function startRegistryServer(options: RegistryServerOptions): void;