@campxdev/react-native-blueprint 0.1.4 → 0.1.6

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