/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ import { HttpEndpoint } from "./HttpEndpoint.js"; /** * A collection of HTTP endpoints that support the same set of handlers. */ export declare class HttpEndpointGroup implements HttpEndpoint { #private; constructor(endpoints: HttpEndpoint[]); set http(handler: HttpEndpoint.HttpHandler); set ws(handler: HttpEndpoint.WsHandler); close(): Promise; } //# sourceMappingURL=HttpEndpointGroup.d.ts.map