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