import { type CSSProperties } from 'react'; export type VerticalParallaxGalleryItem = string | { src: string; alt?: string; id?: string | number; }; export type VerticalParallaxGalleryProps = { items?: VerticalParallaxGalleryItem[]; className?: string; style?: CSSProperties; columns?: number; tabletColumns?: number; mobileColumns?: number; gap?: number | string; padding?: number | string; cardHeight?: number | string; imageScale?: number; easing?: number; ariaLabel?: string; }; export declare const VerticalParallaxGallery: ({ items, className, style, columns, tabletColumns, mobileColumns, gap, padding, cardHeight, imageScale, easing, ariaLabel, }: VerticalParallaxGalleryProps) => import("react/jsx-runtime").JSX.Element;