import { ImageProps } from 'next/image'; import { ImgHTMLAttributes } from 'react'; import { UncontrolledProps } from 'react-medium-image-zoom'; type ImageZoomProps = ImageProps & { /** * Image props when zoom in */ zoomInProps?: ImgHTMLAttributes; /** * Props for `react-medium-image-zoom` */ rmiz?: UncontrolledProps; }; declare function ImageZoom({ zoomInProps, children, rmiz, ...props }: ImageZoomProps): React.ReactElement; export { ImageZoom, type ImageZoomProps };