import React from 'react';
interface GalleryItemProps {
    url: string;
    leading?: boolean;
    setHeight?: boolean;
    fillMode?: 'cover' | 'contain';
    position?: 'center' | 'top';
    onClick: () => void;
    onImageLoadHeightUpdate?: () => void;
}
declare const GalleryItem: React.FC<GalleryItemProps>;
export default GalleryItem;
//# sourceMappingURL=GalleryItem.d.ts.map