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