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