import React from 'react'; import Div from '../Element/Div/Div'; import { CreateProps } from '../../types/utils/CreateProps'; export interface ImageProps { url: string; name: string; } export declare type ImageCarouselImageShape = ImageProps; declare type ImageCarouselProps = CreateProps<{ /** Array of image objects (image url and name to be used on alt property) that are to be shown. */ images: ImageProps[]; /** Number of thumbnails shown at a time. */ numberShown?: number; }, typeof Div, 'padding'>; declare const ImageCarousel: React.FunctionComponent; export default ImageCarousel;