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