export interface CarouselSlide { src: string; alt?: string; title?: string; description?: string; ctaLabel?: string; ctaHref?: string; } export interface CarouselOptions { selector: string; slides: CarouselSlide[]; autoplay?: boolean; intervalMs?: number; pauseOnHover?: boolean; showDots?: boolean; showArrows?: boolean; theme?: "light" | "dark"; onSlideChange?: (index: number, slide: CarouselSlide) => void; hydrate?: boolean; } //# sourceMappingURL=Carousel.types.d.ts.map