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