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