import React from 'react'; import { ObjectFit } from '../types'; export interface ICarouselProps { fit: ObjectFit; /** Sorcues for the images */ images: Array<{ url: string; id: string; fileType?: string; }>; /** Maximum number of slides to show */ maxSlides?: number; /** Interval Between each image */ interval?: number; /** Callback action when click on image */ onClick: (index: number) => void; autoPlay?: boolean; className?: string; } export declare const Carousel: React.FC;