interface CarouselAriaLabels { next: string; previous: string; } interface CarouselNavigationProps { activeIndex: number; ariaLabels: CarouselAriaLabels; onNext: () => void; onPrevious: () => void; shouldApplyDotAnimation?: boolean; totalItems: number; } declare const CarouselNavigation: ({ activeIndex, ariaLabels, onNext, onPrevious, shouldApplyDotAnimation, totalItems, }: CarouselNavigationProps) => import("react/jsx-runtime").JSX.Element; export default CarouselNavigation;