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