import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface CarouselSlideInterfacePropsSlide { content: string; author: string; source: string; } export interface CarouselSlideInterfaceProps extends PropsInterface, CarouselSlideInterfacePropsSlide { index: number; activeIndex: number; } export declare class CarouselSlide extends PureComponent { constructor(props: any); render(): JSX.Element; }