import type { BlurViewProps } from './types'; /** * BlurView — react-native-blur-vibe * * Cross-platform backdrop-filter: blur() for React Native. * * iOS: UIVisualEffectView with true custom radius via effectSettings KVC * Android API 31+: Dual-RenderNode + RenderEffect GPU pipeline * Android API < 31: Direct RenderScript Gaussian (zero external dependencies) * * Works on both Old Architecture (Paper) and New Architecture (Fabric). */ declare const BlurView: { ({ blurAmount, blurType, overlayColor, reducedTransparencyFallbackColor, blurRadius, enabled, progressiveBlurDirection, progressiveStartIntensity, progressiveEndIntensity, noiseFactor, style, children, ...rest }: BlurViewProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default BlurView; //# sourceMappingURL=BlurView.d.ts.map