import { GalleryItem as GalleryItemType } from '../types';
interface GalleryItemProps {
    item: GalleryItemType;
    onImageClick: (image: GalleryItemType) => void;
    onFavoriteToggle: (image: GalleryItemType) => void;
    onImageRemove: (image: GalleryItemType) => void;
    animationType: 'fade' | 'slide' | 'zoom' | 'none';
}
export declare function GalleryItem({ item, onImageClick, onFavoriteToggle, onImageRemove, animationType }: GalleryItemProps): import("react/jsx-runtime").JSX.Element;
export {};
