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