import React from 'react'; import type { ViewProps } from 'react-native'; import ReactNativeScannerViewNativeComponent from './ReactNativeScannerViewNativeComponent'; export interface CameraViewProps extends ViewProps { style?: ViewProps['style']; } export const CameraView = React.forwardRef( (props, ref) => { return ; } ); CameraView.displayName = 'CameraView';