import React from 'react'; import { type GalleryProps, type GalleryRefType } from './types'; type GalleryPropsWithRef = GalleryProps & { reference?: React.ForwardedRef; }; declare const Gallery: (props: GalleryPropsWithRef) => JSX.Element; export default Gallery; //# sourceMappingURL=Gallery.d.ts.map