import { StaticImageData } from 'next/image'; export type SlideProps = { images: { uri: string | StaticImageData; }[]; containerWidth?: number | '100%'; startIndex: number; isLoop?: boolean; animate?: boolean; moveRight: () => void; moveLeft: () => void; }; export default function ImageSlide(props: SlideProps): import("react/jsx-runtime").JSX.Element;