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