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