import type { CSSProperties } from 'react'; export declare const normalizeIndex: (index: number, itemCount: number) => number; export declare const getCarouselMovementMessage: (normalizedIndex: number, itemCount: number) => string; export declare const getContentAnnouncementMessage: (media: { source: string; username?: string; products?: Array<{ id: string; }>; productsLinked?: { exact?: string[]; similar?: string[]; }; }, currentIndex: number, totalCount: number) => string; export declare const getSrOnlyStyle: () => CSSProperties; export declare const getCarouselCloneAccessibilityProps: (isClone: boolean) => Record;