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