export declare class PopPanel { private readonly container; header: HTMLElement; body: HTMLElement; constructor(id: string, content: string | HTMLElement, container?: HTMLElement); start: (event: MouseEvent) => void; stop: () => void; follow: (event: MouseEvent) => void; destroy(): void; }