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