import { FC } from 'react'; interface ParallaxImageProps { src: string; alt?: string; triggerElement?: gsap.DOMTarget | string; start?: string; end?: string; axis?: 'y' | 'x'; fromPercent?: number; toPercent?: number; containerHeight?: string; imageScale?: number; imageObjectPosition?: string; } export declare const ParallaxImage: FC; export {};