import { PresentationSlide } from "./presentation-slide/presentation-slide"; export declare enum PresentationEvent { START = "START", RESTART = "RESTART", NEXT_SLIDE = "NEXT_SLIDE", PREVIOUS_SLIDE = "PREVIOUS_SLIDE", END = "END", } export declare class Presentation { private _title; private _slides; constructor(title: string, slides?: PresentationSlide[]); readonly title: string; readonly slides: PresentationSlide[]; addSlide(slide: PresentationSlide, index?: number): PresentationSlide[]; }