import React from 'react'; import { ViewProps, View } from 'react-native'; declare type BlurType = 'dark' | 'light' | 'thickMaterialDark' | 'thinMaterialDark' | 'thickMaterialLight' | 'thinMaterialLight'; export declare type VibrancyViewProps = ViewProps & { blurType?: BlurType; blurAmount?: number; }; declare const VibrancyView: React.ForwardRefExoticComponent>; export default VibrancyView;