/** * @license * Copyright 2025-2026 Open Home Foundation * SPDX-License-Identifier: Apache-2.0 */ import "@material/web/divider/divider"; import "@material/web/iconbutton/icon-button"; import "@material/web/list/list"; import "@material/web/list/list-item"; import { MatterClient } from "@matter-server/ws-client"; import { LitElement } from "lit"; import "../components/ha-svg-icon"; import "./components/footer"; import "./components/header"; import type { ActiveView } from "./components/header.js"; import "./components/server-details"; declare global { interface HTMLElementTagNameMap { "matter-server-view": MatterServerView; } } declare class MatterServerView extends LitElement { client: MatterClient; protected _tick: number; nodes: MatterClient["nodes"]; activeView?: ActiveView; hasThreadDevices?: boolean; hasWifiDevices?: boolean; private _cachedNodes?; private _cachedNodeEntries?; private getNodeEntries; render(): import("lit-html").TemplateResult<1>; static styles: import("lit").CSSResult; } export {}; //# sourceMappingURL=matter-server-view.d.ts.map