/** * @license * Copyright 2025-2026 Open Home Foundation * SPDX-License-Identifier: Apache-2.0 */ import { MatterClient } from "@matter-server/ws-client"; export interface ShowCommandInvokeDialogOptions { client: MatterClient; nodeId: number | bigint; endpointId: number; clusterId: number; commandId: number; commandName: string; } export declare const showCommandInvokeDialog: (options: ShowCommandInvokeDialogOptions) => Promise; //# sourceMappingURL=show-command-invoke-dialog.d.ts.map