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