/// <reference types="react" />
export interface ImageViewerProps {
    id?: string;
    value?: string;
    height?: number;
    width?: number;
    label?: string;
    defaultUrl?: string;
}
declare const ImageViewer: React.FC<ImageViewerProps>;
export default ImageViewer;
