import { TypedEvent } from '@photo-sphere-viewer/core'; import type { AudioPlugin } from './AudioPlugin'; export declare class AudioPlayEvent extends TypedEvent { static readonly type = "audio-play"; constructor(); } export declare class AudioStopEvent extends TypedEvent { static readonly type = "audio-pause"; constructor(); } export declare class AudioErrorEvent extends TypedEvent { static readonly type = "audio-error"; constructor(); } export declare class AudioReadyEvent extends TypedEvent { static readonly type = "audio-ready"; constructor(); } export type AudioEvents = AudioPlayEvent | AudioStopEvent | AudioErrorEvent | AudioReadyEvent;