declare module "inboost-widget-client" { export function createWidget({ apiKey, selector, apiDomain, config, widgetDomain, withDOMContentLoadedEvent, withoutDelayStart, delayStartSek, withWelcomeMessage, }: { apiKey: string; selector?: string; apiDomain: string; config?: { placeLocation: "Right" | "Left"; indentation: { onSide: number; onBottom: number; }; }; widgetDomain?: string; withDOMContentLoadedEvent?: boolean; withoutDelayStart?: boolean; delayStartSek?: number; withWelcomeMessage?: boolean; }): { destroy: () => null }; export function changeLocation( location: "Right" | "Left", indentation: { onSide: number; onBottom: number; }, wihWelcomeMessage: boolean, widgetDomain: string, apiKey: string, apiDomain: string ): void; } declare module "inboost-widget-client/dist/widgetUMD.js" { export function createWidget({ apiKey, selector, apiDomain, config, widgetDomain, withDOMContentLoadedEvent, withoutDelayStart, delayStartSek, withWelcomeMessage, }: { apiKey: string; selector?: string; apiDomain: string; config?: { placeLocation: "Right" | "Left"; indentation: { onSide: number; onBottom: number; }; }; widgetDomain?: string; withDOMContentLoadedEvent?: boolean; withoutDelayStart?: boolean; delayStartSek?: number; withWelcomeMessage?: boolean; }): { destroy: () => null }; export function changeLocation( location: "Right" | "Left", indentation: { onSide: number; onBottom: number; }, wihWelcomeMessage: boolean, widgetDomain: string, apiKey: string, apiDomain: string ): void; }