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