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