import * as React from "react"; type Props = { imgElement: React.ReactNode; imgSrc: string; width: number; height: number; }; export declare const ZoomImageButton: ({ imgElement, imgSrc, width, height }: Props) => React.JSX.Element; export {};