export type ImageGalleryProps = { images: Array; label?: string; className?: string; type?: 'primary' | 'secondary'; paginationType?: 'thumbnail' | 'bullet'; }; export declare const ImageGallery: ({ images, label, className, type, paginationType }: ImageGalleryProps) => import("react").JSX.Element;