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