/// <reference types="react" />
export type ImageViewerProps = {
    imageUrl: string;
    width: number;
    height: number;
    onRequestClose: () => unknown;
    onSingleTap?: () => unknown;
};
export default function ImageViewer({ imageUrl, width, height, onSingleTap, onRequestClose, }: ImageViewerProps): JSX.Element;
