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