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