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