import { FC, HTMLAttributes } from 'react'; export interface ImageGalleryProps extends HTMLAttributes { images: string[]; right?: boolean; mainImg?: string; vin?: string; } declare const ImageGallery: FC; export default ImageGallery; //# sourceMappingURL=ImageGallery.d.ts.map