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