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