import type { HotspotProps } from './types'; export declare function initHotspot(props: HotspotProps & { id?: string; }): void; interface Hotspot { initHotspot: typeof initHotspot; } export declare function parseHotspot(): { initHotspot: typeof initHotspot; }; export declare function injectHotspotInWindow(hotspot: Hotspot): void; export {};