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