/** * @license * Copyright 2025-2026 Open Home Foundation * SPDX-License-Identifier: Apache-2.0 */ import "@material/web/button/text-button"; import "@material/web/dialog/dialog"; import "@material/web/select/outlined-select"; import "@material/web/select/select-option"; import "@material/web/textfield/outlined-text-field"; import { MatterClient, MatterNode } from "@matter-server/ws-client"; import { LitElement, nothing } from "lit"; export declare class NodeBindingDialog extends LitElement { client: MatterClient; node?: MatterNode; endpoint: number; private _nodeIdInput; private _endpointInput; private _clusterSelection; private _customClusterInput; private _busy; private _knownNodes; private _resolveTarget; private _nodeEndpoints; private _clusterLabel; private _onNodeSelect; private _add; private _close; private _handleClosed; private _renderClusterField; protected render(): typeof nothing | import("lit-html").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { "node-binding-dialog": NodeBindingDialog; } } //# sourceMappingURL=node-binding-dialog.d.ts.map