import { BubbleTheme } from "./bubble/types"; type ChatBotProps = { chatBotId: string; url: string; apiKey: string; gemeindename: string; greetingMessage: string; openOnLoad: boolean; theme: BubbleTheme; starterPrompts?: string[]; municipalityTitle?: string; municipalityLogoLink?: string; introTitle?: string; introSubtitle?: string; voiceInput?: boolean; fileUpload?: boolean; }; export declare const init: (props: ChatBotProps) => void; export declare const destroy: () => void; type Chatbot = { init: typeof init; destroy: typeof destroy; }; export declare const parseChatbot: () => { init: (props: ChatBotProps) => void; destroy: () => void; }; export declare const injectChatbotInWindow: (bot: Chatbot) => void; export {}; //# sourceMappingURL=window.d.ts.map