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