/** * A Server which can listen for connections and handle responding */ export declare class Server { /** * Listen for connections on the specified port and hostname * @param port The port to listen on * @param hostname The hostname to listen on */ listen(port: number, hostname: string): void; }