import React from "react"; declare const SIZE_CLASSES: { readonly sm: "s-relative s-h-24 s-w-24"; readonly md: "s-relative s-h-48 s-w-48"; readonly lg: "s-relative s-h-80 s-w-80"; }; type InteractiveImageGridSize = keyof typeof SIZE_CLASSES; interface InteractiveImageGridProps { className?: string; images: { alt: string; downloadUrl?: string; imageUrl?: string; isLoading?: boolean; title: string; }[]; onClose?: () => void; size?: InteractiveImageGridSize; } declare function InteractiveImageGrid({ className, images, onClose, size }: InteractiveImageGridProps): React.JSX.Element; declare namespace InteractiveImageGrid { var displayName: string; } export { InteractiveImageGrid }; //# sourceMappingURL=InteractiveImageGrid.d.ts.map