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