/** * @license * Copyright 2025-2026 Open Home Foundation * SPDX-License-Identifier: Apache-2.0 */ import { BaseNetworkGraph } from "./base-network-graph.js"; declare global { interface HTMLElementTagNameMap { "wifi-graph": WiFiGraph; } } export declare class WiFiGraph extends BaseNetworkGraph { /** Cache of access points for the current render */ private _accessPoints; /** Get access points map for use by details panel */ get wifiAccessPointsMap(): Map; /** * Override physics for WiFi star topology - needs stronger cluster separation. */ protected _getPhysicsOptions(): any; protected _updateGraph(): void; render(): import("lit-html").TemplateResult<1>; } //# sourceMappingURL=wifi-graph.d.ts.map