import { type CSSProperties } from 'react'; export type LoopingImagesItem = string | { src: string; alt?: string; id?: string | number; }; export type LoopingImagesProps = { images?: LoopingImagesItem[]; className?: string; style?: CSSProperties; stageSize?: number | string; stageHeight?: number | string; squareSize?: number; radius?: number; duration?: number; repeatDelay?: number; intro?: boolean; ariaLabel?: string; }; export declare const LoopingImages: ({ images, className, style, stageSize, stageHeight, squareSize, radius, duration, repeatDelay, intro, ariaLabel, }: LoopingImagesProps) => import("react/jsx-runtime").JSX.Element;