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