import { codegenNativeComponent, type ViewProps, type ColorValue, type CodegenTypes, } from 'react-native'; export interface NativeProps extends ViewProps { interactive?: boolean; effect?: CodegenTypes.WithDefault<'clear' | 'regular' | 'none', 'regular'>; animated?: CodegenTypes.WithDefault; animationDuration?: CodegenTypes.WithDefault; hasAnimationDuration?: CodegenTypes.WithDefault; tintColor?: ColorValue; colorScheme?: CodegenTypes.WithDefault<'light' | 'dark' | 'system', 'system'>; } export default codegenNativeComponent('LiquidGlassView');