import { forwardRef } from 'react'; import { View as RNView, type ViewProps } from 'react-native'; export const View = forwardRef( ({ style, ...otherProps }, ref) => { return ( ); } );