import { type JSX } from 'react'; import './style.scss'; import { ICarouselProps, IEntryInput, IEntryEventParams, ISectionInput, IEntry, ISection } from './types'; export declare const Carousel: ({ className, id, onClickTrack, onDataSetup, sections, style, domRef, }: ICarouselProps) => JSX.Element; export type { ICarouselProps, IEntryInput, IEntryEventParams, ISectionInput, IEntry, ISection, };