/// import { ImageProps } from "next/image.js"; interface ZoomProps { zoomPercentage?: number; backgroundColor?: string; backgroundOpacity?: number; animationDuration?: number; } /** * Zoom component * @param {ImageProps & ZoomProps} props */ export declare const Zoom: (props: ImageProps & ZoomProps) => JSX.Element; export default Zoom;