/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ import { Bytes } from "#util/Bytes.js"; import { MockNetwork } from "./MockNetwork.js"; import { MockRouter } from "./MockRouter.js"; export declare class NetworkSimulator { readonly router: MockRouter; addHost(lastIdentifierByte: number): MockNetwork; } export declare namespace NetworkSimulator { type Listener = (netInterface: string, peerAddress: string, peerPort: number, data: Bytes) => void; } //# sourceMappingURL=NetworkSimulator.d.ts.map