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