/** * Chat Extension * * Exports for the chat widget extension. * The main export is ChatWrapper which is included in the main bundle. * The actual implementation (LazyLoadedChat) is loaded on demand. */ export { ChatWrapper } from "./chat-wrapper"; export * from "./types"; export type { ChatMessage, ChatChannel, ChatConfig, ChatTheme, LazyLoadedChatInterface, } from "../../utils/globals";