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