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