UNPKG

@sbaiahmed1/react-native-blur

Version:
11 lines 737 B
import type { ViewProps } from 'react-native'; import type { WithDefault, Double } from 'react-native/Libraries/Types/CodegenTypes'; export type BlurType = 'xlight' | 'light' | 'dark' | 'extraDark' | 'regular' | 'prominent' | 'systemUltraThinMaterial' | 'systemThinMaterial' | 'systemMaterial' | 'systemThickMaterial' | 'systemChromeMaterial'; interface NativeProps extends ViewProps { blurType?: WithDefault<BlurType, 'light'>; blurAmount?: WithDefault<Double, 10>; reducedTransparencyFallbackColor?: string; } declare const _default: import("react-native/Libraries/Utilities/codegenNativeComponent").NativeComponentType<NativeProps>; export default _default; //# sourceMappingURL=ReactNativeBlurViewNativeComponent.d.ts.map