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