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