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