import { AbstractConfigurablePlugin } from '@photo-sphere-viewer/core'; import type { PanelEvents } from './PanelEvent'; import { PanelComponent } from './PanelComponent'; declare class PanelPlugin extends AbstractConfigurablePlugin { static id: string; panel: PanelComponent; _previewImage: any; constructor(viewer: any, config: any); destroy(): void; show(ids: any, dataHtml: string, isFull?: boolean, width?: number): void; current(): void; hasCurrent(key: string): boolean; hide(): void; setPreviewImage(previewImage: any): void; } export { PanelPlugin };