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