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