interface IServerOptions { rpcHost: string; port: number; cwd: string; } declare const _default: ({ rpcHost, port, cwd }: IServerOptions) => Promise; export default _default;