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