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