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