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