import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { OnClickEventType } from "../../interfaces/types/OnClickEventType"; export interface CarouselIndicatorInterfaceProps extends PropsInterface { onClick: OnClickEventType; index: number; activeIndex: number; } export declare class CarouselIndicator extends PureComponent { constructor(props: any); render(): JSX.Element; }