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