import { type HttpHost, type HttpHostAddress, type HttpHostOptions, type ProcessHttpHost } from './http-host.js'; /** * Runs one logical Host surface on multiple network listeners. Route and WS * registration stays generation-owned and is mirrored to every listener, * while `address` intentionally remains the primary/local listener. */ export declare function createHttpHostGroup(options: readonly HttpHostOptions[]): ProcessHttpHost; /** Returns every bound listener, ordered primary/local first. */ export declare function listHttpHostAddresses(host: HttpHost): readonly HttpHostAddress[];