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