/** * @license * Copyright 2025-2026 Open Home Foundation * SPDX-License-Identifier: Apache-2.0 */ import "@material/web/button/filled-button"; import "@material/web/button/outlined-button"; import { BaseClusterCommands } from "../base-cluster-commands.js"; /** * Command panel for OnOff cluster (ID: 6). * Provides On, Off, and Toggle commands. */ declare class OnOffClusterCommands extends BaseClusterCommands { render(): import("lit-html").TemplateResult<1>; private _handleOn; private _handleOff; private _handleToggle; } declare global { interface HTMLElementTagNameMap { "on-off-cluster-commands": OnOffClusterCommands; } } export {}; //# sourceMappingURL=on-off-commands.d.ts.map