import { GalleryItem, AnimationType, GalleryLayout } from '../types';
interface GalleryGridProps {
    items: GalleryItem[];
    layout: GalleryLayout;
    animation: AnimationType;
    onImageClick: (image: GalleryItem) => void;
    onFavoriteToggle: (image: GalleryItem) => void;
    onImageRemove: (image: GalleryItem) => void;
}
export declare function GalleryGrid({ items, layout, animation, onImageClick, onFavoriteToggle, onImageRemove }: GalleryGridProps): import("react/jsx-runtime").JSX.Element;
export {};
