/** * @license * Copyright 2025-2026 Open Home Foundation * SPDX-License-Identifier: Apache-2.0 */ import { MatterClient } from "@matter-server/ws-client"; export interface ShowAttributeWriteDialogOptions { client: MatterClient; nodeId: number | bigint; endpointId: number; clusterId: number; attributeId: number; label: string; currentValue: unknown; } export declare const showAttributeWriteDialog: (options: ShowAttributeWriteDialogOptions) => Promise; //# sourceMappingURL=show-attribute-write-dialog.d.ts.map