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