/// import { Instance as TippyInstance } from 'tippy.js'; import { Scene } from '@antv/l7'; import { PopupContent, PopupOptions } from '../typings'; import 'tippy.js/dist/tippy.css'; import 'tippy.js/themes/light.css'; export declare class Popup { protected content: PopupContent; protected tippy?: TippyInstance; protected scene: Scene; protected isMouseInner: boolean; constructor(scene: Scene, tippyProps: PopupOptions); onMouseMove: () => void; onMouseOut: () => void; getContent(): PopupContent; setContent: import("lodash").DebouncedFunc<(content: PopupContent | null) => void>; checkTippyShow(): void; destroy(): void; }