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