/** * @license * Copyright (c) 2026 - 2026 Vaadin Ltd. * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ */ import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js'; /** * `` is a binary on/off switch control for a single setting. * * ```html * * ``` */ declare class Switch extends ElementMixin(HTMLElement) {} declare global { interface HTMLElementTagNameMap { 'vaadin-switch': Switch; } } export { Switch };