import { TypedEvent } from '@photo-sphere-viewer/core'; import type { NavigatorPlugin } from './NavigatorPlugin'; export declare class NavigatorShowEvent extends TypedEvent { static readonly type = "navigator-show"; constructor(); } export declare class NavigatorHideEvent extends TypedEvent { static readonly type = "navigator-hide"; constructor(); } export declare class NavigatorEvent extends TypedEvent { readonly data: any; static readonly type = "navigator"; constructor(data: any); } export type NavigatorEvents = NavigatorShowEvent | NavigatorHideEvent | NavigatorEvent;