/** * @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 { MatterClient } from "@matter-server/ws-client"; import { LitElement } from "lit"; export declare class AttributeWriteDialog extends LitElement { client: MatterClient; nodeId: number | bigint; endpointId: number; clusterId: number; attributeId: number; label: string; currentValue: unknown; private _busy; private _error; private _textarea; protected firstUpdated(): void; private get _attributePath(); private _close; private _handleClosed; private _write; protected render(): import("lit-html").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { "attribute-write-dialog": AttributeWriteDialog; } } //# sourceMappingURL=attribute-write-dialog.d.ts.map