import React from 'react'; declare type CarouselType = { initialPhoto?: string; onClose?: () => void; icon?: string; currentIndex: number; photos: { url: string; thumbnail: string; }[]; onChange: (index: number) => void; onClick?: (index: number) => void; setIndex?: (index: number) => void; }; export default function Carousel({ currentIndex, photos, onClick, onChange, setIndex, }: CarouselType): React.ReactElement; export {};