export interface JsonRpcServer { listen(): Promise<{ address: string; port: number }>; waitUntilClosed(): Promise; close(): Promise; }