export default ImageViewer;
/**
 * Viewer for displaying images with annotations.
 */
declare function ImageViewer({ src, annotations, onFullScreen, showAnnotations }: {
    src: any;
    annotations: any;
    onFullScreen: any;
    showAnnotations: any;
}): import("react/jsx-runtime").JSX.Element;
