/// import "./imageSlider.css"; interface IProps { image1: string; image2: string; alt1?: string; alt2?: string; sliderColor?: string; sliderWidth?: number; sliderInitialPosition?: number; onSlide?: () => void; onSlideEnd?: () => void; handleBackgroundColor?: string; handleColor?: string; showHandle?: boolean; customHandle?: JSX.Element | null; leftLabelText?: string | null; rightLabelText?: string | null; onLoadFirstImage?: () => void; onLoadSecondImage?: () => void; onErrorFirstImage?: () => void; onErrorSecondImage?: () => void; showPlaceholder?: boolean; customPlaceholder?: JSX.Element | null; animate?: boolean; animationCycleDuration?: number; } export default function ImageSlider({ image1, image2, alt1, alt2, sliderColor, sliderWidth, sliderInitialPosition, onSlide, onSlideEnd, handleBackgroundColor, handleColor, showHandle, customHandle, leftLabelText, rightLabelText, onLoadFirstImage, onLoadSecondImage, onErrorFirstImage, onErrorSecondImage, showPlaceholder, customPlaceholder, animate, animationCycleDuration, }: IProps): JSX.Element; export {};