/** * @license * Copyright 2026 Open Home Foundation * SPDX-License-Identifier: Apache-2.0 */ import type { MatterClient, MatterNode } from "@matter-server/ws-client"; export declare const NODE_LABEL_CLUSTER_ID = 40; export declare const NODE_LABEL_ATTRIBUTE_ID = 5; export declare const MAX_NODE_LABEL_LENGTH = 32; export declare const NODE_LABEL_ATTRIBUTE_PATH = "0/40/5"; /** * Write the BasicInformation NodeLabel attribute for a node. * Trims surrounding whitespace so the stored value matches what MatterNode.nodeLabel reads back. */ export declare function writeNodeLabel(client: MatterClient, node: MatterNode, label: string): Promise; //# sourceMappingURL=node-label.d.ts.map