import { type CSSProperties } from 'react'; export type ParallaxPhotoCarouselItem = string | { src: string; alt?: string; id?: string | number; }; export type ParallaxPhotoCarouselProps = { items?: ParallaxPhotoCarouselItem[]; className?: string; style?: CSSProperties; width?: number | string; height?: number | string; stageHeight?: number | string; radius?: number; borderRadius?: number | string; perspective?: number; initialRotation?: number; dragSensitivity?: number; wheelSensitivity?: number; hoverOpacity?: number; intro?: boolean; ariaLabel?: string; }; export declare const ParallaxPhotoCarousel: ({ items, className, style, width, height, stageHeight, radius, borderRadius, perspective, initialRotation, dragSensitivity, wheelSensitivity, hoverOpacity, intro, ariaLabel, }: ParallaxPhotoCarouselProps) => import("react/jsx-runtime").JSX.Element;