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