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