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