import './carousel.styles.scss'; import * as React from 'react'; import { CarouselProps as OriginalCarouselProps } from 'antd/es/carousel'; /** * Carousel Props * * @memberof Carousel */ interface CarouselProps extends OriginalCarouselProps { /** * A React element to serve as the next arrow. */ nextArrow: JSX.Element | undefined; /** * A React element to serve as the previous arrow. */ prevArrow: JSX.Element | undefined; /** * Styles for the next arrow button (if props.arrows === true) */ nextArrowStyle: React.CSSProperties; /** * Styles for the previous arrow button (if props.arrows === true) */ prevArrowStyle: React.CSSProperties; } /** * The Carousel component. */ declare class Carousel extends React.Component { /** * Default properties */ static defaultProps: CarouselProps; getPrevArrow(): JSX.Element | undefined; getNextArrow(): JSX.Element | undefined; render(): JSX.Element; } export { Carousel };