export type ChatWidgetInWindow = {
    initialNotification?: MessageEvent['data'];
    open?: () => void;
    close?: () => void;
    toggle?: () => void;
};
export type WindowWithChatWidget = Window & typeof globalThis & {
    ConnectyCubeChatWidget?: ChatWidgetInWindow;
};
export { default } from './App';
