import type { GalleryItem } from '../Gallery/GalleryContext';
export type ModalGalleryProps = {
    /** Array of media attachments to display */
    items: GalleryItem[];
    className?: string;
    /** Whether clicking the empty gallery background should close the modal (default: true) */
    closeOnBackgroundClick?: boolean;
    modalClassName?: string;
};
export declare const ModalGallery: ({ className, closeOnBackgroundClick, items, modalClassName, }: ModalGalleryProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ModalGallery.d.ts.map