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