import { TypedEvent } from '@photo-sphere-viewer/core'; import type { CarouselPlugin } from './CarouselPlugin'; export declare class CarouselPlayEvent extends TypedEvent { static readonly type = "carousel-play"; constructor(); } export declare class CarouselStopEvent extends TypedEvent { static readonly type = "carousel-pause"; constructor(); } export declare class CarouselEmptyEvent extends TypedEvent { static readonly type = "carousel-empty"; constructor(); } export type CarouselEvents = CarouselPlayEvent | CarouselStopEvent | CarouselEmptyEvent;