import type { ColorValue } from 'react-native'; import type { Double, Float, Int32 } from 'react-native/Libraries/Types/CodegenTypes'; import type { ViewProps } from './utils'; import type { UnsafeMixed } from './codegenUtils'; import { NumberProp } from '../lib/extract/types'; type NativeBackgroundProp = Readonly<{ type?: string; color?: Float; borderless?: boolean; rippleRadius?: Float; }>; type HitSlop = Readonly<{ left?: Float; top?: Float; right?: Float; bottom?: Float; }>; interface NativeProps extends ViewProps { bbWidth?: UnsafeMixed; bbHeight?: UnsafeMixed; minX?: Float; minY?: Float; vbWidth?: Float; vbHeight?: Float; align?: string; meetOrSlice?: Int32; color?: ColorValue; pointerEvents?: string; hasTVPreferredFocus?: boolean; borderBottomColor?: ColorValue; nextFocusDown?: Int32; borderRightColor?: ColorValue; nextFocusRight?: Int32; borderLeftColor?: ColorValue; borderColor?: ColorValue; removeClippedSubviews?: boolean; nextFocusForward?: Int32; nextFocusUp?: Int32; accessible?: boolean; borderStartColor?: ColorValue; borderEndColor?: ColorValue; focusable?: boolean; nativeBackgroundAndroid?: NativeBackgroundProp; nativeForegroundAndroid?: NativeBackgroundProp; backfaceVisibility?: string; borderStyle?: string; needsOffscreenAlphaCompositing?: boolean; hitSlop?: UnsafeMixed; borderTopColor?: ColorValue; nextFocusLeft?: Int32; borderBlockColor?: ColorValue; borderBlockEndColor?: ColorValue; borderBlockStartColor?: ColorValue; borderRadius?: UnsafeMixed; borderTopLeftRadius?: UnsafeMixed; borderTopRightRadius?: UnsafeMixed; borderBottomRightRadius?: UnsafeMixed; borderBottomLeftRadius?: UnsafeMixed; borderTopStartRadius?: UnsafeMixed; borderTopEndRadius?: UnsafeMixed; borderBottomStartRadius?: UnsafeMixed; borderBottomEndRadius?: UnsafeMixed; borderEndEndRadius?: UnsafeMixed; borderEndStartRadius?: UnsafeMixed; borderStartEndRadius?: UnsafeMixed; borderStartStartRadius?: UnsafeMixed; } declare const _default: import("react-native/Libraries/Utilities/codegenNativeComponent").NativeComponentType; export default _default; //# sourceMappingURL=AndroidSvgViewNativeComponent.d.ts.map