import React, { MouseEvent } from 'react'; import Viewer from '@r2u/viewer'; import { ViewerRef, ViewerProps } from '../../methods/types'; import { R2UModelViewerRef } from '../../../src/types'; interface Props extends ViewerProps { alt?: string; autoRotate?: boolean; poster?: string; exitImgSrc?: string; expandImgSrc?: string; popup?: boolean; progressBarColor?: string; progressBarPosition?: 'top' | 'middle' | 'bottom'; waterMarkPosition?: string; refViewer: React.RefObject; refViewerPopup: React.RefObject; refViewerFunctions: React.RefObject; ModelViewerElement: typeof Viewer; onClick?: (e: MouseEvent) => void; } declare const R2UModelViewer: React.ForwardRefExoticComponent>; export default R2UModelViewer;