import React from "react"; export declare type CarouselIndicatorsProps = JSX.IntrinsicElements["ol"] & { /** Active state. (Managed by Carousel) */ active?: number; /** The full size of the carousel. (Managed by Carousel) */ size?: number; /** The parent ID, used to enable accessibility features. (Managed by Carousel) */ parentId?: string; /** A event handler triggered when and indicator is clicked. (Managed by Carousel) */ onIndicatorClicked?: React.MouseEventHandler; }; export declare const CarouselIndicators: React.FC;