import React__default, { ReactNode } from 'react'; interface ImageProps { children?: ReactNode; ref?: any; fullScreen?: boolean; backgroundColor?: string; theme?: string; iconColor?: any; modalClose?: string; image?: any; roundedImages?: boolean; disableImageZoom?: boolean; showFullScreenIcon?: boolean; showMagnificationIcons?: boolean; showControls?: boolean; downloadImages?: boolean; rtl?: boolean; width?: number | null; height?: number | null; framework?: string; lightboxIdentifier?: string; images?: any; lightboxImgClass?: string; wrapperClassName?: string; className?: string; } declare const Image: React__default.FC; export { Image, type ImageProps };