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