export { default } from './App'; export type { AppProps as ConnectyCubeChatWidgetProps } from './App'; export type ChatWidgetInWindow = { initialNotification?: MessageEvent['data']; open?: () => void; close?: () => void; toggle?: () => void; }; export type WindowWithChatWidget = Window & typeof globalThis & { ConnectyCubeChatWidget?: ChatWidgetInWindow; }; //# sourceMappingURL=index.d.ts.map