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