import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface CarouselSlideImageInterfacePropsSlide { image: string; title: string; } export interface CarouselSlideImageInterfaceProps extends PropsInterface, CarouselSlideImageInterfacePropsSlide { index: number; activeIndex: number; } export declare class CarouselSlideImage extends PureComponent { constructor(props: any); render(): JSX.Element; }