/** * @license * Copyright 2025-2026 Open Home Foundation * SPDX-License-Identifier: Apache-2.0 */ /** * Register a cluster command panel component. * @param clusterId - The Matter cluster ID (e.g., 6 for OnOff, 8 for LevelControl) * @param tagName - The custom element tag name (e.g., "on-off-cluster-commands") */ export declare function registerClusterCommands(clusterId: number, tagName: string): void; /** * Get the registered component tag name for a cluster ID. * @param clusterId - The Matter cluster ID * @returns The custom element tag name, or undefined if not registered */ export declare function getClusterCommandsTag(clusterId: number): string | undefined; /** * Check if a cluster has a registered command panel. * @param clusterId - The Matter cluster ID * @returns true if a command panel is registered */ export declare function hasClusterCommands(clusterId: number): boolean; //# sourceMappingURL=registry.d.ts.map