import { SlideshowSlidePosition } from "./slideshow-slide-position.js";
export interface SlideshowSlide {
    title?: string;
    content: string;
    handle?: string;
    active: boolean;
    type?: string;
    position: SlideshowSlidePosition;
    class?: string;
    index: number;
    src?: string;
}
