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