/** * @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 CommandInvokeDialog extends LitElement { client: MatterClient; nodeId: number | bigint; endpointId: number; clusterId: number; commandId: number; commandName: string; private _busy; private _error; private _response; private _success; private _textarea; protected firstUpdated(): void; private _close; private _handleClosed; private _invoke; protected render(): import("lit-html").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { "command-invoke-dialog": CommandInvokeDialog; } } //# sourceMappingURL=command-invoke-dialog.d.ts.map