import "./Gallery.scss";
import React from "react";
export interface GalleryProps {
    images: string[];
    leading?: boolean;
    onImageLoadHeightUpdate?: () => void;
    onOpenGallery?: () => void;
    onCloseGallery?: () => void;
    className?: string;
}
declare const Gallery: React.FC<GalleryProps>;
export default Gallery;
//# sourceMappingURL=Gallery.d.ts.map