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