@campxdev/react-native-blueprint 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/lib/module/app/_layout.js +1 -1
  2. package/lib/module/app/_layout.js.map +1 -1
  3. package/lib/module/components/ui/index.js +1 -0
  4. package/lib/module/components/ui/index.js.map +1 -1
  5. package/lib/module/global.css +417 -0
  6. package/lib/module/types/global.d.js +6 -0
  7. package/lib/module/types/global.d.js.map +1 -0
  8. package/lib/module/types/rn-primitives.d.js +6 -0
  9. package/lib/module/types/rn-primitives.d.js.map +1 -0
  10. package/lib/typescript/src/app/_layout.d.ts +7 -8
  11. package/lib/typescript/src/components/ui/Accordion.d.ts +103 -11
  12. package/lib/typescript/src/components/ui/Alert-Dialog.d.ts +167 -10
  13. package/lib/typescript/src/components/ui/Alert-Dialog.d.ts.map +1 -1
  14. package/lib/typescript/src/components/ui/Alert.d.ts +59 -10
  15. package/lib/typescript/src/components/ui/Avatar.d.ts +1350 -10
  16. package/lib/typescript/src/components/ui/Badge.d.ts +203 -10
  17. package/lib/typescript/src/components/ui/Bottom-Sheet.d.ts +43 -11
  18. package/lib/typescript/src/components/ui/Button.d.ts +175 -10
  19. package/lib/typescript/src/components/ui/Card.d.ts +853 -10
  20. package/lib/typescript/src/components/ui/Checkbox.d.ts +36 -11
  21. package/lib/typescript/src/components/ui/Collapsible.d.ts +1 -147
  22. package/lib/typescript/src/components/ui/Collapsible.d.ts.map +1 -1
  23. package/lib/typescript/src/components/ui/Context-Menu.d.ts +149 -10
  24. package/lib/typescript/src/components/ui/Context-Menu.d.ts.map +1 -1
  25. package/lib/typescript/src/components/ui/Custom-Card.d.ts +863 -10
  26. package/lib/typescript/src/components/ui/Dialog.d.ts +125 -10
  27. package/lib/typescript/src/components/ui/Dialog.d.ts.map +1 -1
  28. package/lib/typescript/src/components/ui/Dropdown-Menu.d.ts +283 -10
  29. package/lib/typescript/src/components/ui/Dropdown-Menu.d.ts.map +1 -1
  30. package/lib/typescript/src/components/ui/Greeting-Card.d.ts +152 -10
  31. package/lib/typescript/src/components/ui/Hover-Card.d.ts +67 -10
  32. package/lib/typescript/src/components/ui/Hover-Card.d.ts.map +1 -1
  33. package/lib/typescript/src/components/ui/Icon.d.ts +43 -11
  34. package/lib/typescript/src/components/ui/Input.d.ts +51 -10
  35. package/lib/typescript/src/components/ui/Label.d.ts +104 -10
  36. package/lib/typescript/src/components/ui/Menubar.d.ts +174 -10
  37. package/lib/typescript/src/components/ui/NavBar.d.ts +271 -9
  38. package/lib/typescript/src/components/ui/Popover.d.ts +70 -10
  39. package/lib/typescript/src/components/ui/Popover.d.ts.map +1 -1
  40. package/lib/typescript/src/components/ui/Progress.d.ts +27 -11
  41. package/lib/typescript/src/components/ui/Radio-Group.d.ts +47 -11
  42. package/lib/typescript/src/components/ui/Select.d.ts +106 -10
  43. package/lib/typescript/src/components/ui/Separator.d.ts +165 -10
  44. package/lib/typescript/src/components/ui/Skeleton.d.ts +40 -11
  45. package/lib/typescript/src/components/ui/Slider.d.ts +52 -8
  46. package/lib/typescript/src/components/ui/Switch.d.ts +34 -11
  47. package/lib/typescript/src/components/ui/Table.d.ts +69 -10
  48. package/lib/typescript/src/components/ui/Tabs.d.ts +51 -11
  49. package/lib/typescript/src/components/ui/Text.d.ts +115 -10
  50. package/lib/typescript/src/components/ui/Textarea.d.ts +60 -10
  51. package/lib/typescript/src/components/ui/Theme-Toggle.d.ts +193 -10
  52. package/lib/typescript/src/components/ui/Toast.d.ts +54 -10
  53. package/lib/typescript/src/components/ui/Toggle-Group.d.ts +48 -10
  54. package/lib/typescript/src/components/ui/Toggle.d.ts +52 -10
  55. package/lib/typescript/src/components/ui/Tooltip.d.ts +70 -10
  56. package/lib/typescript/src/components/ui/Tooltip.d.ts.map +1 -1
  57. package/lib/typescript/src/components/ui/index.d.ts +7 -2
  58. package/lib/typescript/src/components/ui/index.d.ts.map +1 -1
  59. package/lib/typescript/src/index.d.ts +7 -93
  60. package/lib/typescript/src/lib/ThemeProvider.d.ts +136 -13
  61. package/lib/typescript/src/lib/cornerRadius.d.ts +112 -21
  62. package/lib/typescript/src/lib/fonts.d.ts +21 -30
  63. package/lib/typescript/src/lib/theme.d.ts +86 -8
  64. package/lib/typescript/src/lib/utils.d.ts +111 -1
  65. package/package.json +2 -9
  66. package/src/app/_layout.tsx +1 -1
  67. package/src/components/ui/index.ts +1 -0
  68. package/src/global.css +417 -0
  69. package/src/types/global.d.ts +44 -0
  70. package/src/types/rn-primitives.d.ts +70 -0
  71. package/lib/typescript/babel.config.d.ts +0 -13
  72. package/lib/typescript/babel.config.d.ts.map +0 -1
  73. package/lib/typescript/metro.config.d.ts +0 -3
  74. package/lib/typescript/metro.config.d.ts.map +0 -1
  75. package/lib/typescript/src/components/ui/Floating-Action-Button.d.ts +0 -11
  76. package/lib/typescript/src/components/ui.d.ts +0 -49
  77. package/lib/typescript/tailwind.config.d.ts +0 -3
  78. package/lib/typescript/tailwind.config.d.ts.map +0 -1
@@ -1,11 +1,1351 @@
1
1
  import * as React from 'react';
2
- import { ViewProps } from 'react-native';
3
-
4
- export interface AvatarProps extends ViewProps {
5
- className?: string;
6
- children?: React.ReactNode;
7
- [key: string]: any;
8
- }
9
-
10
- export const Avatar: React.ComponentType<AvatarProps>;
11
- export default Avatar;
2
+ /**
3
+ * Avatar container component
4
+ *
5
+ * Circular container for displaying user avatars with images or fallback initials.
6
+ * Use with AvatarImage and AvatarFallback for complete functionality.
7
+ *
8
+ * @component
9
+ * @example
10
+ * ```tsx
11
+ * <Avatar>
12
+ * <AvatarImage source={{ uri: userPhoto }} alt="User avatar" />
13
+ * <AvatarFallback>
14
+ * <Text>JD</Text>
15
+ * </AvatarFallback>
16
+ * </Avatar>
17
+ * ```
18
+ *
19
+ * @property {boolean} [asChild] - When true, merges props into immediate child
20
+ * @property {string} [className] - Additional Tailwind classes
21
+ */
22
+ declare const Avatar: React.ForwardRefExoticComponent<Omit<Omit<Readonly<Omit<Readonly<{
23
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
24
+ onAccessibilityTap?: (() => unknown) | undefined;
25
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
26
+ onMagicTap?: (() => unknown) | undefined;
27
+ onAccessibilityEscape?: (() => unknown) | undefined;
28
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
29
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
30
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
31
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
32
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
33
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
34
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
35
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
36
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
37
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
38
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
39
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
40
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
41
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
42
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
43
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
44
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
45
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
46
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
47
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
48
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
49
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
50
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
51
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
52
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
53
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
54
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
55
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
56
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
57
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
58
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
59
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
60
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
61
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
62
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
63
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
64
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
65
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
66
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
67
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
68
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
69
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
70
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
71
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
72
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
73
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
74
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
75
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
76
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
77
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
78
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
79
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
80
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
81
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
82
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
83
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
84
+ renderToHardwareTextureAndroid?: boolean | undefined;
85
+ hasTVPreferredFocus?: boolean | undefined;
86
+ nextFocusDown?: number | undefined;
87
+ nextFocusForward?: number | undefined;
88
+ nextFocusLeft?: number | undefined;
89
+ nextFocusRight?: number | undefined;
90
+ nextFocusUp?: number | undefined;
91
+ focusable?: boolean | undefined;
92
+ tabIndex?: 0 | -1;
93
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
94
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
95
+ shouldRasterizeIOS?: boolean | undefined;
96
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
97
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
98
+ "aria-labelledby"?: string | undefined;
99
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
100
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
101
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
102
+ screenReaderFocusable?: boolean;
103
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
104
+ accessibilityIgnoresInvertColors?: boolean | undefined;
105
+ accessibilityViewIsModal?: boolean | undefined;
106
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
107
+ accessibilityLargeContentTitle?: string | undefined;
108
+ "aria-modal"?: boolean | undefined;
109
+ accessibilityElementsHidden?: boolean | undefined;
110
+ accessibilityLanguage?: string | undefined;
111
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
112
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
113
+ accessible?: boolean | undefined;
114
+ accessibilityLabel?: string | undefined;
115
+ accessibilityHint?: string | undefined;
116
+ "aria-label"?: string | undefined;
117
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
118
+ role?: import("react-native").Role | undefined;
119
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
120
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
121
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
122
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
123
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
124
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
125
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
126
+ "aria-busy"?: boolean | undefined;
127
+ "aria-checked"?: (boolean | undefined) | "mixed";
128
+ "aria-disabled"?: boolean | undefined;
129
+ "aria-expanded"?: boolean | undefined;
130
+ "aria-selected"?: boolean | undefined;
131
+ "aria-hidden"?: boolean | undefined;
132
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
133
+ children?: React.ReactNode;
134
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
135
+ collapsable?: boolean | undefined;
136
+ collapsableChildren?: boolean | undefined;
137
+ id?: string;
138
+ testID?: string | undefined;
139
+ nativeID?: string | undefined;
140
+ needsOffscreenAlphaCompositing?: boolean | undefined;
141
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
142
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
143
+ removeClippedSubviews?: boolean | undefined;
144
+ experimental_accessibilityOrder?: Array<string> | undefined;
145
+ }>, never>>, "ref"> & {
146
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Components/View/ViewNativeComponent").default>>;
147
+ }, "ref"> & {
148
+ asChild?: boolean;
149
+ } & {
150
+ className?: string;
151
+ } & React.RefAttributes<import("react-native/types_generated/src/private/types/HostInstance").LegacyHostInstanceMethods>>;
152
+ /**
153
+ * AvatarImage - Image component for avatar
154
+ *
155
+ * Displays the user's profile image. Falls back to AvatarFallback if image fails to load.
156
+ *
157
+ * @property {ImageSource} source - Image source (local or remote URI)
158
+ * @property {string} [alt] - Alternative text for accessibility
159
+ * @property {string} [className] - Additional Tailwind classes
160
+ */
161
+ declare const AvatarImage: React.ForwardRefExoticComponent<((Omit<Omit<Readonly<Omit<Readonly<{
162
+ defaultSource?: import("react-native").ImageSource | undefined;
163
+ onPartialLoad?: (() => void) | undefined;
164
+ onProgress?: ((event: import("react-native").ImageProgressEventIOS) => void) | undefined;
165
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "width" | "height" | "children" | "id" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "resizeMode" | "tintColor" | "source" | "style" | "onAccessibilityAction" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder" | "onAccessibilityTap" | "onMagicTap" | "onAccessibilityEscape" | "loadingIndicatorSource" | "progressiveRenderingEnabled" | "fadeDuration" | "resizeMethod" | "resizeMultiplier" | "internal_analyticTag" | "alt" | "blurRadius" | "capInsets" | "crossOrigin" | "onError" | "onLoad" | "onLoadEnd" | "onLoadStart" | "referrerPolicy" | "src" | "srcSet"> & Omit<Readonly<{
166
+ loadingIndicatorSource?: (number | Readonly<import("react-native").ImageURISource>) | undefined;
167
+ progressiveRenderingEnabled?: boolean | undefined;
168
+ fadeDuration?: number | undefined;
169
+ resizeMethod?: ("auto" | "resize" | "scale" | "none") | undefined;
170
+ resizeMultiplier?: number | undefined;
171
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "width" | "height" | "children" | "id" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "resizeMode" | "tintColor" | "source" | "style" | "onAccessibilityAction" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder" | "onAccessibilityTap" | "onMagicTap" | "onAccessibilityEscape" | "internal_analyticTag" | "alt" | "blurRadius" | "capInsets" | "crossOrigin" | "onError" | "onLoad" | "onLoadEnd" | "onLoadStart" | "referrerPolicy" | "src" | "srcSet"> & Omit<Readonly<Omit<Omit<Readonly<Omit<Readonly<{
172
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
173
+ onAccessibilityTap?: (() => unknown) | undefined;
174
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
175
+ onMagicTap?: (() => unknown) | undefined;
176
+ onAccessibilityEscape?: (() => unknown) | undefined;
177
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
178
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
179
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
180
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
181
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
182
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
183
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
184
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
185
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
186
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
187
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
188
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
189
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
190
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
191
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
192
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
193
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
194
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
195
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
196
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
197
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
198
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
199
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
200
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
201
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
202
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
203
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
204
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
205
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
206
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
207
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
208
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
209
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
210
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
211
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
212
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
213
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
214
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
215
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
216
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
217
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
218
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
219
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
220
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
221
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
222
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
223
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
224
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
225
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
226
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
227
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
228
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
229
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
230
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
231
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
232
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
233
+ renderToHardwareTextureAndroid?: boolean | undefined;
234
+ hasTVPreferredFocus?: boolean | undefined;
235
+ nextFocusDown?: number | undefined;
236
+ nextFocusForward?: number | undefined;
237
+ nextFocusLeft?: number | undefined;
238
+ nextFocusRight?: number | undefined;
239
+ nextFocusUp?: number | undefined;
240
+ focusable?: boolean | undefined;
241
+ tabIndex?: 0 | -1;
242
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
243
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
244
+ shouldRasterizeIOS?: boolean | undefined;
245
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
246
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
247
+ "aria-labelledby"?: string | undefined;
248
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
249
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
250
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
251
+ screenReaderFocusable?: boolean;
252
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
253
+ accessibilityIgnoresInvertColors?: boolean | undefined;
254
+ accessibilityViewIsModal?: boolean | undefined;
255
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
256
+ accessibilityLargeContentTitle?: string | undefined;
257
+ "aria-modal"?: boolean | undefined;
258
+ accessibilityElementsHidden?: boolean | undefined;
259
+ accessibilityLanguage?: string | undefined;
260
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
261
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
262
+ accessible?: boolean | undefined;
263
+ accessibilityLabel?: string | undefined;
264
+ accessibilityHint?: string | undefined;
265
+ "aria-label"?: string | undefined;
266
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
267
+ role?: import("react-native").Role | undefined;
268
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
269
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
270
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
271
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
272
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
273
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
274
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
275
+ "aria-busy"?: boolean | undefined;
276
+ "aria-checked"?: (boolean | undefined) | "mixed";
277
+ "aria-disabled"?: boolean | undefined;
278
+ "aria-expanded"?: boolean | undefined;
279
+ "aria-selected"?: boolean | undefined;
280
+ "aria-hidden"?: boolean | undefined;
281
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
282
+ children?: React.ReactNode;
283
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
284
+ collapsable?: boolean | undefined;
285
+ collapsableChildren?: boolean | undefined;
286
+ id?: string;
287
+ testID?: string | undefined;
288
+ nativeID?: string | undefined;
289
+ needsOffscreenAlphaCompositing?: boolean | undefined;
290
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
291
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
292
+ removeClippedSubviews?: boolean | undefined;
293
+ experimental_accessibilityOrder?: Array<string> | undefined;
294
+ }>, never>>, "style">, "width" | "height" | "children" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "resizeMode" | "tintColor" | "source" | "aria-label" | "aria-labelledby" | "internal_analyticTag" | "alt" | "blurRadius" | "capInsets" | "crossOrigin" | "onError" | "onLoad" | "onLoadEnd" | "onLoadStart" | "referrerPolicy" | "src" | "srcSet"> & {
295
+ accessible?: boolean | undefined;
296
+ internal_analyticTag?: string | undefined;
297
+ accessibilityLabel?: string | undefined;
298
+ "aria-label"?: string | undefined;
299
+ "aria-labelledby"?: string | undefined;
300
+ alt?: string | undefined;
301
+ blurRadius?: number | undefined;
302
+ capInsets?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsProp | undefined;
303
+ crossOrigin?: ("anonymous" | "use-credentials") | undefined;
304
+ height?: number;
305
+ width?: number;
306
+ onError?: ((event: import("react-native").ImageErrorEvent) => void) | undefined;
307
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
308
+ onLoad?: ((event: import("react-native").ImageLoadEvent) => void) | undefined;
309
+ onLoadEnd?: (() => void) | undefined;
310
+ onLoadStart?: (() => void) | undefined;
311
+ source?: import("react-native").ImageSource | undefined;
312
+ referrerPolicy?: ("no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url") | undefined;
313
+ resizeMode?: import("react-native/types_generated/Libraries/Image/ImageResizeMode").ImageResizeMode | undefined;
314
+ testID?: string | undefined;
315
+ tintColor?: import("react-native").ColorValue;
316
+ src?: string | undefined;
317
+ srcSet?: string | undefined;
318
+ children?: never;
319
+ }>, "style"> & {
320
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ImageStyleProp | undefined;
321
+ }>, "ref"> & {
322
+ ref?: React.Ref<React.ComponentRef<import("react-native").HostComponent<Readonly<Omit<Readonly<Omit<Readonly<{
323
+ defaultSource?: import("react-native").ImageSource | undefined;
324
+ onPartialLoad?: (() => void) | undefined;
325
+ onProgress?: ((event: import("react-native").ImageProgressEventIOS) => void) | undefined;
326
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "width" | "height" | "children" | "id" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "resizeMode" | "tintColor" | "source" | "style" | "onAccessibilityAction" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder" | "onAccessibilityTap" | "onMagicTap" | "onAccessibilityEscape" | "loadingIndicatorSource" | "progressiveRenderingEnabled" | "fadeDuration" | "resizeMethod" | "resizeMultiplier" | "internal_analyticTag" | "alt" | "blurRadius" | "capInsets" | "crossOrigin" | "onError" | "onLoad" | "onLoadEnd" | "onLoadStart" | "referrerPolicy" | "src" | "srcSet"> & Omit<Readonly<{
327
+ loadingIndicatorSource?: (number | Readonly<import("react-native").ImageURISource>) | undefined;
328
+ progressiveRenderingEnabled?: boolean | undefined;
329
+ fadeDuration?: number | undefined;
330
+ resizeMethod?: ("auto" | "resize" | "scale" | "none") | undefined;
331
+ resizeMultiplier?: number | undefined;
332
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "width" | "height" | "children" | "id" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "resizeMode" | "tintColor" | "source" | "style" | "onAccessibilityAction" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder" | "onAccessibilityTap" | "onMagicTap" | "onAccessibilityEscape" | "internal_analyticTag" | "alt" | "blurRadius" | "capInsets" | "crossOrigin" | "onError" | "onLoad" | "onLoadEnd" | "onLoadStart" | "referrerPolicy" | "src" | "srcSet"> & Omit<Readonly<Omit<Omit<Readonly<Omit<Readonly<{
333
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
334
+ onAccessibilityTap?: (() => unknown) | undefined;
335
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
336
+ onMagicTap?: (() => unknown) | undefined;
337
+ onAccessibilityEscape?: (() => unknown) | undefined;
338
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
339
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
340
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
341
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
342
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
343
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
344
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
345
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
346
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
347
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
348
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
349
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
350
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
351
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
352
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
353
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
354
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
355
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
356
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
357
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
358
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
359
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
360
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
361
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
362
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
363
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
364
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
365
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
366
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
367
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
368
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
369
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
370
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
371
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
372
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
373
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
374
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
375
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
376
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
377
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
378
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
379
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
380
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
381
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
382
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
383
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
384
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
385
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
386
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
387
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
388
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
389
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
390
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
391
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
392
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
393
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
394
+ renderToHardwareTextureAndroid?: boolean | undefined;
395
+ hasTVPreferredFocus?: boolean | undefined;
396
+ nextFocusDown?: number | undefined;
397
+ nextFocusForward?: number | undefined;
398
+ nextFocusLeft?: number | undefined;
399
+ nextFocusRight?: number | undefined;
400
+ nextFocusUp?: number | undefined;
401
+ focusable?: boolean | undefined;
402
+ tabIndex?: 0 | -1;
403
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
404
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
405
+ shouldRasterizeIOS?: boolean | undefined;
406
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
407
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
408
+ "aria-labelledby"?: string | undefined;
409
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
410
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
411
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
412
+ screenReaderFocusable?: boolean;
413
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
414
+ accessibilityIgnoresInvertColors?: boolean | undefined;
415
+ accessibilityViewIsModal?: boolean | undefined;
416
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
417
+ accessibilityLargeContentTitle?: string | undefined;
418
+ "aria-modal"?: boolean | undefined;
419
+ accessibilityElementsHidden?: boolean | undefined;
420
+ accessibilityLanguage?: string | undefined;
421
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
422
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
423
+ accessible?: boolean | undefined;
424
+ accessibilityLabel?: string | undefined;
425
+ accessibilityHint?: string | undefined;
426
+ "aria-label"?: string | undefined;
427
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
428
+ role?: import("react-native").Role | undefined;
429
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
430
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
431
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
432
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
433
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
434
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
435
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
436
+ "aria-busy"?: boolean | undefined;
437
+ "aria-checked"?: (boolean | undefined) | "mixed";
438
+ "aria-disabled"?: boolean | undefined;
439
+ "aria-expanded"?: boolean | undefined;
440
+ "aria-selected"?: boolean | undefined;
441
+ "aria-hidden"?: boolean | undefined;
442
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
443
+ children?: React.ReactNode;
444
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
445
+ collapsable?: boolean | undefined;
446
+ collapsableChildren?: boolean | undefined;
447
+ id?: string;
448
+ testID?: string | undefined;
449
+ nativeID?: string | undefined;
450
+ needsOffscreenAlphaCompositing?: boolean | undefined;
451
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
452
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
453
+ removeClippedSubviews?: boolean | undefined;
454
+ experimental_accessibilityOrder?: Array<string> | undefined;
455
+ }>, never>>, "style">, "width" | "height" | "children" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "resizeMode" | "tintColor" | "source" | "aria-label" | "aria-labelledby" | "internal_analyticTag" | "alt" | "blurRadius" | "capInsets" | "crossOrigin" | "onError" | "onLoad" | "onLoadEnd" | "onLoadStart" | "referrerPolicy" | "src" | "srcSet"> & {
456
+ accessible?: boolean | undefined;
457
+ internal_analyticTag?: string | undefined;
458
+ accessibilityLabel?: string | undefined;
459
+ "aria-label"?: string | undefined;
460
+ "aria-labelledby"?: string | undefined;
461
+ alt?: string | undefined;
462
+ blurRadius?: number | undefined;
463
+ capInsets?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsProp | undefined;
464
+ crossOrigin?: ("anonymous" | "use-credentials") | undefined;
465
+ height?: number;
466
+ width?: number;
467
+ onError?: ((event: import("react-native").ImageErrorEvent) => void) | undefined;
468
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
469
+ onLoad?: ((event: import("react-native").ImageLoadEvent) => void) | undefined;
470
+ onLoadEnd?: (() => void) | undefined;
471
+ onLoadStart?: (() => void) | undefined;
472
+ source?: import("react-native").ImageSource | undefined;
473
+ referrerPolicy?: ("no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url") | undefined;
474
+ resizeMode?: import("react-native/types_generated/Libraries/Image/ImageResizeMode").ImageResizeMode | undefined;
475
+ testID?: string | undefined;
476
+ tintColor?: import("react-native").ColorValue;
477
+ src?: string | undefined;
478
+ srcSet?: string | undefined;
479
+ children?: never;
480
+ }>, "style"> & {
481
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ImageStyleProp | undefined;
482
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "tintColor" | "style" | "onAccessibilityAction" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder" | "onAccessibilityTap" | "onMagicTap" | "onAccessibilityEscape" | "src" | "defaultSource" | "shouldNotifyLoadEvents" | "headers" | "loadingIndicatorSrc"> & Omit<Readonly<Omit<Readonly<{
483
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
484
+ onAccessibilityTap?: (() => unknown) | undefined;
485
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
486
+ onMagicTap?: (() => unknown) | undefined;
487
+ onAccessibilityEscape?: (() => unknown) | undefined;
488
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
489
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
490
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
491
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
492
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
493
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
494
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
495
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
496
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
497
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
498
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
499
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
500
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
501
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
502
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
503
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
504
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
505
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
506
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
507
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
508
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
509
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
510
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
511
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
512
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
513
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
514
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
515
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
516
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
517
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
518
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
519
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
520
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
521
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
522
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
523
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
524
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
525
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
526
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
527
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
528
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
529
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
530
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
531
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
532
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
533
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
534
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
535
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
536
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
537
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
538
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
539
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
540
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
541
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
542
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
543
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
544
+ renderToHardwareTextureAndroid?: boolean | undefined;
545
+ hasTVPreferredFocus?: boolean | undefined;
546
+ nextFocusDown?: number | undefined;
547
+ nextFocusForward?: number | undefined;
548
+ nextFocusLeft?: number | undefined;
549
+ nextFocusRight?: number | undefined;
550
+ nextFocusUp?: number | undefined;
551
+ focusable?: boolean | undefined;
552
+ tabIndex?: 0 | -1;
553
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
554
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
555
+ shouldRasterizeIOS?: boolean | undefined;
556
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
557
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
558
+ "aria-labelledby"?: string | undefined;
559
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
560
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
561
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
562
+ screenReaderFocusable?: boolean;
563
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
564
+ accessibilityIgnoresInvertColors?: boolean | undefined;
565
+ accessibilityViewIsModal?: boolean | undefined;
566
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
567
+ accessibilityLargeContentTitle?: string | undefined;
568
+ "aria-modal"?: boolean | undefined;
569
+ accessibilityElementsHidden?: boolean | undefined;
570
+ accessibilityLanguage?: string | undefined;
571
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
572
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
573
+ accessible?: boolean | undefined;
574
+ accessibilityLabel?: string | undefined;
575
+ accessibilityHint?: string | undefined;
576
+ "aria-label"?: string | undefined;
577
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
578
+ role?: import("react-native").Role | undefined;
579
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
580
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
581
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
582
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
583
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
584
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
585
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
586
+ "aria-busy"?: boolean | undefined;
587
+ "aria-checked"?: (boolean | undefined) | "mixed";
588
+ "aria-disabled"?: boolean | undefined;
589
+ "aria-expanded"?: boolean | undefined;
590
+ "aria-selected"?: boolean | undefined;
591
+ "aria-hidden"?: boolean | undefined;
592
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
593
+ children?: React.ReactNode;
594
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
595
+ collapsable?: boolean | undefined;
596
+ collapsableChildren?: boolean | undefined;
597
+ id?: string;
598
+ testID?: string | undefined;
599
+ nativeID?: string | undefined;
600
+ needsOffscreenAlphaCompositing?: boolean | undefined;
601
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
602
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
603
+ removeClippedSubviews?: boolean | undefined;
604
+ experimental_accessibilityOrder?: Array<string> | undefined;
605
+ }>, never>>, "tintColor" | "style" | "src" | "defaultSource" | "shouldNotifyLoadEvents" | "headers" | "loadingIndicatorSrc"> & {
606
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ImageStyleProp | import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").DangerouslyImpreciseStyle;
607
+ tintColor?: import("react-native").ColorValue;
608
+ shouldNotifyLoadEvents?: boolean;
609
+ src?: (import("react-native/types_generated/Libraries/Image/AssetSourceResolver").ResolvedAssetSource | undefined) | (ReadonlyArray<Readonly<{
610
+ uri?: string | undefined;
611
+ }> | undefined> | undefined);
612
+ headers?: {
613
+ [$$Key$$: string]: string;
614
+ } | undefined;
615
+ defaultSource?: (import("react-native").ImageSource | undefined) | (string | undefined);
616
+ loadingIndicatorSrc?: string | undefined;
617
+ }>>>>;
618
+ }, "ref"> | Omit<Omit<Readonly<Omit<Readonly<{
619
+ defaultSource?: import("react-native").ImageSource | undefined;
620
+ onPartialLoad?: (() => void) | undefined;
621
+ onProgress?: ((event: import("react-native").ImageProgressEventIOS) => void) | undefined;
622
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "width" | "height" | "children" | "id" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "resizeMode" | "tintColor" | "source" | "style" | "onAccessibilityAction" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder" | "onAccessibilityTap" | "onMagicTap" | "onAccessibilityEscape" | "loadingIndicatorSource" | "progressiveRenderingEnabled" | "fadeDuration" | "resizeMethod" | "resizeMultiplier" | "internal_analyticTag" | "alt" | "blurRadius" | "capInsets" | "crossOrigin" | "onError" | "onLoad" | "onLoadEnd" | "onLoadStart" | "referrerPolicy" | "src" | "srcSet"> & Omit<Readonly<{
623
+ loadingIndicatorSource?: (number | Readonly<import("react-native").ImageURISource>) | undefined;
624
+ progressiveRenderingEnabled?: boolean | undefined;
625
+ fadeDuration?: number | undefined;
626
+ resizeMethod?: ("auto" | "resize" | "scale" | "none") | undefined;
627
+ resizeMultiplier?: number | undefined;
628
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "width" | "height" | "children" | "id" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "resizeMode" | "tintColor" | "source" | "style" | "onAccessibilityAction" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder" | "onAccessibilityTap" | "onMagicTap" | "onAccessibilityEscape" | "internal_analyticTag" | "alt" | "blurRadius" | "capInsets" | "crossOrigin" | "onError" | "onLoad" | "onLoadEnd" | "onLoadStart" | "referrerPolicy" | "src" | "srcSet"> & Omit<Readonly<Omit<Omit<Readonly<Omit<Readonly<{
629
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
630
+ onAccessibilityTap?: (() => unknown) | undefined;
631
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
632
+ onMagicTap?: (() => unknown) | undefined;
633
+ onAccessibilityEscape?: (() => unknown) | undefined;
634
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
635
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
636
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
637
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
638
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
639
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
640
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
641
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
642
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
643
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
644
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
645
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
646
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
647
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
648
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
649
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
650
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
651
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
652
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
653
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
654
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
655
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
656
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
657
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
658
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
659
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
660
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
661
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
662
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
663
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
664
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
665
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
666
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
667
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
668
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
669
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
670
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
671
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
672
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
673
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
674
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
675
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
676
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
677
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
678
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
679
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
680
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
681
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
682
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
683
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
684
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
685
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
686
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
687
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
688
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
689
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
690
+ renderToHardwareTextureAndroid?: boolean | undefined;
691
+ hasTVPreferredFocus?: boolean | undefined;
692
+ nextFocusDown?: number | undefined;
693
+ nextFocusForward?: number | undefined;
694
+ nextFocusLeft?: number | undefined;
695
+ nextFocusRight?: number | undefined;
696
+ nextFocusUp?: number | undefined;
697
+ focusable?: boolean | undefined;
698
+ tabIndex?: 0 | -1;
699
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
700
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
701
+ shouldRasterizeIOS?: boolean | undefined;
702
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
703
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
704
+ "aria-labelledby"?: string | undefined;
705
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
706
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
707
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
708
+ screenReaderFocusable?: boolean;
709
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
710
+ accessibilityIgnoresInvertColors?: boolean | undefined;
711
+ accessibilityViewIsModal?: boolean | undefined;
712
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
713
+ accessibilityLargeContentTitle?: string | undefined;
714
+ "aria-modal"?: boolean | undefined;
715
+ accessibilityElementsHidden?: boolean | undefined;
716
+ accessibilityLanguage?: string | undefined;
717
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
718
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
719
+ accessible?: boolean | undefined;
720
+ accessibilityLabel?: string | undefined;
721
+ accessibilityHint?: string | undefined;
722
+ "aria-label"?: string | undefined;
723
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
724
+ role?: import("react-native").Role | undefined;
725
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
726
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
727
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
728
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
729
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
730
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
731
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
732
+ "aria-busy"?: boolean | undefined;
733
+ "aria-checked"?: (boolean | undefined) | "mixed";
734
+ "aria-disabled"?: boolean | undefined;
735
+ "aria-expanded"?: boolean | undefined;
736
+ "aria-selected"?: boolean | undefined;
737
+ "aria-hidden"?: boolean | undefined;
738
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
739
+ children?: React.ReactNode;
740
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
741
+ collapsable?: boolean | undefined;
742
+ collapsableChildren?: boolean | undefined;
743
+ id?: string;
744
+ testID?: string | undefined;
745
+ nativeID?: string | undefined;
746
+ needsOffscreenAlphaCompositing?: boolean | undefined;
747
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
748
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
749
+ removeClippedSubviews?: boolean | undefined;
750
+ experimental_accessibilityOrder?: Array<string> | undefined;
751
+ }>, never>>, "style">, "width" | "height" | "children" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "resizeMode" | "tintColor" | "source" | "aria-label" | "aria-labelledby" | "internal_analyticTag" | "alt" | "blurRadius" | "capInsets" | "crossOrigin" | "onError" | "onLoad" | "onLoadEnd" | "onLoadStart" | "referrerPolicy" | "src" | "srcSet"> & {
752
+ accessible?: boolean | undefined;
753
+ internal_analyticTag?: string | undefined;
754
+ accessibilityLabel?: string | undefined;
755
+ "aria-label"?: string | undefined;
756
+ "aria-labelledby"?: string | undefined;
757
+ alt?: string | undefined;
758
+ blurRadius?: number | undefined;
759
+ capInsets?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsProp | undefined;
760
+ crossOrigin?: ("anonymous" | "use-credentials") | undefined;
761
+ height?: number;
762
+ width?: number;
763
+ onError?: ((event: import("react-native").ImageErrorEvent) => void) | undefined;
764
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
765
+ onLoad?: ((event: import("react-native").ImageLoadEvent) => void) | undefined;
766
+ onLoadEnd?: (() => void) | undefined;
767
+ onLoadStart?: (() => void) | undefined;
768
+ source?: import("react-native").ImageSource | undefined;
769
+ referrerPolicy?: ("no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url") | undefined;
770
+ resizeMode?: import("react-native/types_generated/Libraries/Image/ImageResizeMode").ImageResizeMode | undefined;
771
+ testID?: string | undefined;
772
+ tintColor?: import("react-native").ColorValue;
773
+ src?: string | undefined;
774
+ srcSet?: string | undefined;
775
+ children?: never;
776
+ }>, "style"> & {
777
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ImageStyleProp | undefined;
778
+ }>, "ref"> & {
779
+ ref?: React.Ref<React.ComponentRef<import("react-native").HostComponent<Readonly<Omit<Readonly<Omit<Readonly<{
780
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
781
+ onAccessibilityTap?: (() => unknown) | undefined;
782
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
783
+ onMagicTap?: (() => unknown) | undefined;
784
+ onAccessibilityEscape?: (() => unknown) | undefined;
785
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
786
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
787
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
788
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
789
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
790
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
791
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
792
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
793
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
794
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
795
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
796
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
797
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
798
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
799
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
800
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
801
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
802
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
803
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
804
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
805
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
806
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
807
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
808
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
809
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
810
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
811
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
812
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
813
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
814
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
815
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
816
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
817
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
818
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
819
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
820
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
821
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
822
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
823
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
824
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
825
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
826
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
827
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
828
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
829
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
830
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
831
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
832
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
833
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
834
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
835
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
836
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
837
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
838
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
839
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
840
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
841
+ renderToHardwareTextureAndroid?: boolean | undefined;
842
+ hasTVPreferredFocus?: boolean | undefined;
843
+ nextFocusDown?: number | undefined;
844
+ nextFocusForward?: number | undefined;
845
+ nextFocusLeft?: number | undefined;
846
+ nextFocusRight?: number | undefined;
847
+ nextFocusUp?: number | undefined;
848
+ focusable?: boolean | undefined;
849
+ tabIndex?: 0 | -1;
850
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
851
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
852
+ shouldRasterizeIOS?: boolean | undefined;
853
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
854
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
855
+ "aria-labelledby"?: string | undefined;
856
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
857
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
858
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
859
+ screenReaderFocusable?: boolean;
860
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
861
+ accessibilityIgnoresInvertColors?: boolean | undefined;
862
+ accessibilityViewIsModal?: boolean | undefined;
863
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
864
+ accessibilityLargeContentTitle?: string | undefined;
865
+ "aria-modal"?: boolean | undefined;
866
+ accessibilityElementsHidden?: boolean | undefined;
867
+ accessibilityLanguage?: string | undefined;
868
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
869
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
870
+ accessible?: boolean | undefined;
871
+ accessibilityLabel?: string | undefined;
872
+ accessibilityHint?: string | undefined;
873
+ "aria-label"?: string | undefined;
874
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
875
+ role?: import("react-native").Role | undefined;
876
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
877
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
878
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
879
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
880
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
881
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
882
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
883
+ "aria-busy"?: boolean | undefined;
884
+ "aria-checked"?: (boolean | undefined) | "mixed";
885
+ "aria-disabled"?: boolean | undefined;
886
+ "aria-expanded"?: boolean | undefined;
887
+ "aria-selected"?: boolean | undefined;
888
+ "aria-hidden"?: boolean | undefined;
889
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
890
+ children?: React.ReactNode;
891
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
892
+ collapsable?: boolean | undefined;
893
+ collapsableChildren?: boolean | undefined;
894
+ id?: string;
895
+ testID?: string | undefined;
896
+ nativeID?: string | undefined;
897
+ needsOffscreenAlphaCompositing?: boolean | undefined;
898
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
899
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
900
+ removeClippedSubviews?: boolean | undefined;
901
+ experimental_accessibilityOrder?: Array<string> | undefined;
902
+ }>, never>>, "resizeMode" | "tintColor" | "src" | "headers"> & {
903
+ resizeMode?: import("react-native/types_generated/Libraries/Image/ImageResizeMode").ImageResizeMode | undefined;
904
+ src?: ReadonlyArray<Readonly<{
905
+ uri?: string | undefined;
906
+ }> | undefined> | undefined;
907
+ tintColor?: import("react-native").ColorValue | undefined;
908
+ headers?: {
909
+ [$$Key$$: string]: string;
910
+ } | undefined;
911
+ }>>> | React.ComponentRef<import("react-native").HostComponent<Readonly<Omit<Readonly<Omit<Readonly<{
912
+ defaultSource?: import("react-native").ImageSource | undefined;
913
+ onPartialLoad?: (() => void) | undefined;
914
+ onProgress?: ((event: import("react-native").ImageProgressEventIOS) => void) | undefined;
915
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "width" | "height" | "children" | "id" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "resizeMode" | "tintColor" | "source" | "style" | "onAccessibilityAction" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder" | "onAccessibilityTap" | "onMagicTap" | "onAccessibilityEscape" | "loadingIndicatorSource" | "progressiveRenderingEnabled" | "fadeDuration" | "resizeMethod" | "resizeMultiplier" | "internal_analyticTag" | "alt" | "blurRadius" | "capInsets" | "crossOrigin" | "onError" | "onLoad" | "onLoadEnd" | "onLoadStart" | "referrerPolicy" | "src" | "srcSet"> & Omit<Readonly<{
916
+ loadingIndicatorSource?: (number | Readonly<import("react-native").ImageURISource>) | undefined;
917
+ progressiveRenderingEnabled?: boolean | undefined;
918
+ fadeDuration?: number | undefined;
919
+ resizeMethod?: ("auto" | "resize" | "scale" | "none") | undefined;
920
+ resizeMultiplier?: number | undefined;
921
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "width" | "height" | "children" | "id" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "resizeMode" | "tintColor" | "source" | "style" | "onAccessibilityAction" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder" | "onAccessibilityTap" | "onMagicTap" | "onAccessibilityEscape" | "internal_analyticTag" | "alt" | "blurRadius" | "capInsets" | "crossOrigin" | "onError" | "onLoad" | "onLoadEnd" | "onLoadStart" | "referrerPolicy" | "src" | "srcSet"> & Omit<Readonly<Omit<Omit<Readonly<Omit<Readonly<{
922
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
923
+ onAccessibilityTap?: (() => unknown) | undefined;
924
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
925
+ onMagicTap?: (() => unknown) | undefined;
926
+ onAccessibilityEscape?: (() => unknown) | undefined;
927
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
928
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
929
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
930
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
931
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
932
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
933
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
934
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
935
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
936
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
937
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
938
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
939
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
940
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
941
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
942
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
943
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
944
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
945
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
946
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
947
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
948
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
949
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
950
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
951
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
952
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
953
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
954
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
955
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
956
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
957
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
958
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
959
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
960
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
961
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
962
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
963
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
964
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
965
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
966
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
967
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
968
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
969
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
970
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
971
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
972
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
973
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
974
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
975
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
976
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
977
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
978
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
979
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
980
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
981
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
982
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
983
+ renderToHardwareTextureAndroid?: boolean | undefined;
984
+ hasTVPreferredFocus?: boolean | undefined;
985
+ nextFocusDown?: number | undefined;
986
+ nextFocusForward?: number | undefined;
987
+ nextFocusLeft?: number | undefined;
988
+ nextFocusRight?: number | undefined;
989
+ nextFocusUp?: number | undefined;
990
+ focusable?: boolean | undefined;
991
+ tabIndex?: 0 | -1;
992
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
993
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
994
+ shouldRasterizeIOS?: boolean | undefined;
995
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
996
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
997
+ "aria-labelledby"?: string | undefined;
998
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
999
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
1000
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
1001
+ screenReaderFocusable?: boolean;
1002
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
1003
+ accessibilityIgnoresInvertColors?: boolean | undefined;
1004
+ accessibilityViewIsModal?: boolean | undefined;
1005
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
1006
+ accessibilityLargeContentTitle?: string | undefined;
1007
+ "aria-modal"?: boolean | undefined;
1008
+ accessibilityElementsHidden?: boolean | undefined;
1009
+ accessibilityLanguage?: string | undefined;
1010
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
1011
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
1012
+ accessible?: boolean | undefined;
1013
+ accessibilityLabel?: string | undefined;
1014
+ accessibilityHint?: string | undefined;
1015
+ "aria-label"?: string | undefined;
1016
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
1017
+ role?: import("react-native").Role | undefined;
1018
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
1019
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1020
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
1021
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
1022
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
1023
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
1024
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
1025
+ "aria-busy"?: boolean | undefined;
1026
+ "aria-checked"?: (boolean | undefined) | "mixed";
1027
+ "aria-disabled"?: boolean | undefined;
1028
+ "aria-expanded"?: boolean | undefined;
1029
+ "aria-selected"?: boolean | undefined;
1030
+ "aria-hidden"?: boolean | undefined;
1031
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1032
+ children?: React.ReactNode;
1033
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
1034
+ collapsable?: boolean | undefined;
1035
+ collapsableChildren?: boolean | undefined;
1036
+ id?: string;
1037
+ testID?: string | undefined;
1038
+ nativeID?: string | undefined;
1039
+ needsOffscreenAlphaCompositing?: boolean | undefined;
1040
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
1041
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
1042
+ removeClippedSubviews?: boolean | undefined;
1043
+ experimental_accessibilityOrder?: Array<string> | undefined;
1044
+ }>, never>>, "style">, "width" | "height" | "children" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "resizeMode" | "tintColor" | "source" | "aria-label" | "aria-labelledby" | "internal_analyticTag" | "alt" | "blurRadius" | "capInsets" | "crossOrigin" | "onError" | "onLoad" | "onLoadEnd" | "onLoadStart" | "referrerPolicy" | "src" | "srcSet"> & {
1045
+ accessible?: boolean | undefined;
1046
+ internal_analyticTag?: string | undefined;
1047
+ accessibilityLabel?: string | undefined;
1048
+ "aria-label"?: string | undefined;
1049
+ "aria-labelledby"?: string | undefined;
1050
+ alt?: string | undefined;
1051
+ blurRadius?: number | undefined;
1052
+ capInsets?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsProp | undefined;
1053
+ crossOrigin?: ("anonymous" | "use-credentials") | undefined;
1054
+ height?: number;
1055
+ width?: number;
1056
+ onError?: ((event: import("react-native").ImageErrorEvent) => void) | undefined;
1057
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
1058
+ onLoad?: ((event: import("react-native").ImageLoadEvent) => void) | undefined;
1059
+ onLoadEnd?: (() => void) | undefined;
1060
+ onLoadStart?: (() => void) | undefined;
1061
+ source?: import("react-native").ImageSource | undefined;
1062
+ referrerPolicy?: ("no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url") | undefined;
1063
+ resizeMode?: import("react-native/types_generated/Libraries/Image/ImageResizeMode").ImageResizeMode | undefined;
1064
+ testID?: string | undefined;
1065
+ tintColor?: import("react-native").ColorValue;
1066
+ src?: string | undefined;
1067
+ srcSet?: string | undefined;
1068
+ children?: never;
1069
+ }>, "style"> & {
1070
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ImageStyleProp | undefined;
1071
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "onLayout" | "accessibilityLabel" | "accessible" | "testID" | "tintColor" | "style" | "onAccessibilityAction" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder" | "onAccessibilityTap" | "onMagicTap" | "onAccessibilityEscape" | "src" | "defaultSource" | "shouldNotifyLoadEvents" | "headers" | "loadingIndicatorSrc"> & Omit<Readonly<Omit<Readonly<{
1072
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
1073
+ onAccessibilityTap?: (() => unknown) | undefined;
1074
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
1075
+ onMagicTap?: (() => unknown) | undefined;
1076
+ onAccessibilityEscape?: (() => unknown) | undefined;
1077
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1078
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1079
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1080
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
1081
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1082
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1083
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1084
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1085
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1086
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1087
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1088
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1089
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1090
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1091
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
1092
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
1093
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1094
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
1095
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1096
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
1097
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1098
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
1099
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1100
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
1101
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1102
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
1103
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1104
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
1105
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1106
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
1107
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1108
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
1109
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1110
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
1111
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1112
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1113
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1114
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1115
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1116
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1117
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
1118
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
1119
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
1120
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
1121
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1122
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1123
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1124
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1125
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1126
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1127
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1128
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1129
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1130
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1131
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
1132
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
1133
+ renderToHardwareTextureAndroid?: boolean | undefined;
1134
+ hasTVPreferredFocus?: boolean | undefined;
1135
+ nextFocusDown?: number | undefined;
1136
+ nextFocusForward?: number | undefined;
1137
+ nextFocusLeft?: number | undefined;
1138
+ nextFocusRight?: number | undefined;
1139
+ nextFocusUp?: number | undefined;
1140
+ focusable?: boolean | undefined;
1141
+ tabIndex?: 0 | -1;
1142
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
1143
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1144
+ shouldRasterizeIOS?: boolean | undefined;
1145
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
1146
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
1147
+ "aria-labelledby"?: string | undefined;
1148
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
1149
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
1150
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
1151
+ screenReaderFocusable?: boolean;
1152
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
1153
+ accessibilityIgnoresInvertColors?: boolean | undefined;
1154
+ accessibilityViewIsModal?: boolean | undefined;
1155
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
1156
+ accessibilityLargeContentTitle?: string | undefined;
1157
+ "aria-modal"?: boolean | undefined;
1158
+ accessibilityElementsHidden?: boolean | undefined;
1159
+ accessibilityLanguage?: string | undefined;
1160
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
1161
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
1162
+ accessible?: boolean | undefined;
1163
+ accessibilityLabel?: string | undefined;
1164
+ accessibilityHint?: string | undefined;
1165
+ "aria-label"?: string | undefined;
1166
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
1167
+ role?: import("react-native").Role | undefined;
1168
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
1169
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1170
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
1171
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
1172
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
1173
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
1174
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
1175
+ "aria-busy"?: boolean | undefined;
1176
+ "aria-checked"?: (boolean | undefined) | "mixed";
1177
+ "aria-disabled"?: boolean | undefined;
1178
+ "aria-expanded"?: boolean | undefined;
1179
+ "aria-selected"?: boolean | undefined;
1180
+ "aria-hidden"?: boolean | undefined;
1181
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1182
+ children?: React.ReactNode;
1183
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
1184
+ collapsable?: boolean | undefined;
1185
+ collapsableChildren?: boolean | undefined;
1186
+ id?: string;
1187
+ testID?: string | undefined;
1188
+ nativeID?: string | undefined;
1189
+ needsOffscreenAlphaCompositing?: boolean | undefined;
1190
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
1191
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
1192
+ removeClippedSubviews?: boolean | undefined;
1193
+ experimental_accessibilityOrder?: Array<string> | undefined;
1194
+ }>, never>>, "tintColor" | "style" | "src" | "defaultSource" | "shouldNotifyLoadEvents" | "headers" | "loadingIndicatorSrc"> & {
1195
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ImageStyleProp | import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").DangerouslyImpreciseStyle;
1196
+ tintColor?: import("react-native").ColorValue;
1197
+ shouldNotifyLoadEvents?: boolean;
1198
+ src?: (import("react-native/types_generated/Libraries/Image/AssetSourceResolver").ResolvedAssetSource | undefined) | (ReadonlyArray<Readonly<{
1199
+ uri?: string | undefined;
1200
+ }> | undefined> | undefined);
1201
+ headers?: {
1202
+ [$$Key$$: string]: string;
1203
+ } | undefined;
1204
+ defaultSource?: (import("react-native").ImageSource | undefined) | (string | undefined);
1205
+ loadingIndicatorSrc?: string | undefined;
1206
+ }>>>>;
1207
+ }, "ref">) & {
1208
+ className?: string;
1209
+ alt?: string;
1210
+ }) & React.RefAttributes<import("react-native/types_generated/src/private/types/HostInstance").LegacyHostInstanceMethods>>;
1211
+ /**
1212
+ * AvatarFallback - Fallback content when image is unavailable
1213
+ *
1214
+ * Typically displays user initials or an icon. Shows when AvatarImage fails to load
1215
+ * or is not provided.
1216
+ *
1217
+ * @property {boolean} [asChild] - When true, merges props into immediate child
1218
+ * @property {string} [className] - Additional Tailwind classes
1219
+ */
1220
+ declare const AvatarFallback: React.ForwardRefExoticComponent<Omit<Omit<Readonly<Omit<Readonly<{
1221
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
1222
+ onAccessibilityTap?: (() => unknown) | undefined;
1223
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
1224
+ onMagicTap?: (() => unknown) | undefined;
1225
+ onAccessibilityEscape?: (() => unknown) | undefined;
1226
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1227
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1228
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1229
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
1230
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1231
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1232
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1233
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1234
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1235
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1236
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1237
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1238
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1239
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1240
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
1241
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
1242
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1243
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
1244
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1245
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
1246
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1247
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
1248
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1249
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
1250
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1251
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
1252
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1253
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
1254
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1255
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
1256
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1257
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
1258
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1259
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
1260
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1261
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1262
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1263
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1264
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1265
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1266
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
1267
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
1268
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
1269
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
1270
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1271
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1272
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1273
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1274
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1275
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1276
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1277
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1278
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1279
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1280
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
1281
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
1282
+ renderToHardwareTextureAndroid?: boolean | undefined;
1283
+ hasTVPreferredFocus?: boolean | undefined;
1284
+ nextFocusDown?: number | undefined;
1285
+ nextFocusForward?: number | undefined;
1286
+ nextFocusLeft?: number | undefined;
1287
+ nextFocusRight?: number | undefined;
1288
+ nextFocusUp?: number | undefined;
1289
+ focusable?: boolean | undefined;
1290
+ tabIndex?: 0 | -1;
1291
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
1292
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1293
+ shouldRasterizeIOS?: boolean | undefined;
1294
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
1295
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
1296
+ "aria-labelledby"?: string | undefined;
1297
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
1298
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
1299
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
1300
+ screenReaderFocusable?: boolean;
1301
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
1302
+ accessibilityIgnoresInvertColors?: boolean | undefined;
1303
+ accessibilityViewIsModal?: boolean | undefined;
1304
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
1305
+ accessibilityLargeContentTitle?: string | undefined;
1306
+ "aria-modal"?: boolean | undefined;
1307
+ accessibilityElementsHidden?: boolean | undefined;
1308
+ accessibilityLanguage?: string | undefined;
1309
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
1310
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
1311
+ accessible?: boolean | undefined;
1312
+ accessibilityLabel?: string | undefined;
1313
+ accessibilityHint?: string | undefined;
1314
+ "aria-label"?: string | undefined;
1315
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
1316
+ role?: import("react-native").Role | undefined;
1317
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
1318
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1319
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
1320
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
1321
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
1322
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
1323
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
1324
+ "aria-busy"?: boolean | undefined;
1325
+ "aria-checked"?: (boolean | undefined) | "mixed";
1326
+ "aria-disabled"?: boolean | undefined;
1327
+ "aria-expanded"?: boolean | undefined;
1328
+ "aria-selected"?: boolean | undefined;
1329
+ "aria-hidden"?: boolean | undefined;
1330
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1331
+ children?: React.ReactNode;
1332
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
1333
+ collapsable?: boolean | undefined;
1334
+ collapsableChildren?: boolean | undefined;
1335
+ id?: string;
1336
+ testID?: string | undefined;
1337
+ nativeID?: string | undefined;
1338
+ needsOffscreenAlphaCompositing?: boolean | undefined;
1339
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
1340
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
1341
+ removeClippedSubviews?: boolean | undefined;
1342
+ experimental_accessibilityOrder?: Array<string> | undefined;
1343
+ }>, never>>, "ref"> & {
1344
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Components/View/ViewNativeComponent").default>>;
1345
+ }, "ref"> & {
1346
+ asChild?: boolean;
1347
+ } & {
1348
+ className?: string;
1349
+ } & React.RefAttributes<import("react-native/types_generated/src/private/types/HostInstance").LegacyHostInstanceMethods>>;
1350
+ export { Avatar, AvatarImage, AvatarFallback };
1351
+ //# sourceMappingURL=Avatar.d.ts.map