export default VideoViewer;
/**
 * Viewer for displaying video with annotations.
 */
declare function VideoViewer({ type, src, autoplay, muted, controls, responsive, aspectRatio, annotations, showAnnotations, onFullScreen, }: {
    type: any;
    src: any;
    autoplay?: boolean | undefined;
    muted?: boolean | undefined;
    controls?: boolean | undefined;
    responsive?: boolean | undefined;
    aspectRatio?: string | undefined;
    annotations?: any[] | undefined;
    showAnnotations: any;
    onFullScreen: any;
}): import("react/jsx-runtime").JSX.Element;
