import React from 'react'; import { ImageGalleryProps } from './types'; declare const ImageGallery: { ({ amp, captionProps, items, height, width }: ImageGalleryProps): React.JSX.Element; defaultProps: { height: string[]; width: string[]; }; }; export { ImageGallery };