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