import React, { forwardRef } from 'react'; import { StyleSheet, ViewProps, ViewStyle } from 'react-native'; import NativeVibrancyView from '../fabric/VibrancyViewNativeComponent'; import type { BlurViewProps } from './BlurView.ios'; export type VibrancyViewProps = ViewProps & { blurType?: BlurViewProps['blurType']; blurAmount: number; reducedTransparencyFallbackColor?: string; }; const VibrancyView = forwardRef( ({ style, ...rest }, ref) => ( ) ); const styles = StyleSheet.create<{ transparent: ViewStyle }>({ transparent: { backgroundColor: 'transparent' }, }); export default VibrancyView;