import type { Components, JSX } from "../types/components"; interface InputSwitch extends Components.InputSwitch, HTMLElement {} export const InputSwitch: { prototype: InputSwitch; new (): InputSwitch; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;