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