react-native-screen-transitions 1.1.0 → 2.0.0

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 (344) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +273 -269
  3. package/lib/commonjs/__tests__ /geometry.test.js +178 -0
  4. package/lib/commonjs/__tests__ /geometry.test.js.map +1 -0
  5. package/lib/commonjs/components/bounds-activator.js +33 -0
  6. package/lib/commonjs/components/bounds-activator.js.map +1 -0
  7. package/lib/commonjs/components/controllers/screen-lifecycle.js +66 -0
  8. package/lib/commonjs/components/controllers/screen-lifecycle.js.map +1 -0
  9. package/lib/commonjs/components/create-transition-aware-component.js +96 -0
  10. package/lib/commonjs/components/create-transition-aware-component.js.map +1 -0
  11. package/lib/commonjs/components/root-transition-aware.js +56 -0
  12. package/lib/commonjs/components/root-transition-aware.js.map +1 -0
  13. package/lib/commonjs/configs/index.js +12 -0
  14. package/lib/commonjs/configs/index.js.map +1 -0
  15. package/lib/commonjs/configs/presets.js +206 -0
  16. package/lib/commonjs/configs/presets.js.map +1 -0
  17. package/lib/commonjs/configs/specs.js +14 -0
  18. package/lib/commonjs/configs/specs.js.map +1 -0
  19. package/lib/commonjs/hooks/animation/use-associated-style.js +36 -0
  20. package/lib/commonjs/hooks/animation/use-associated-style.js.map +1 -0
  21. package/lib/commonjs/hooks/animation/use-screen-animation.js +120 -0
  22. package/lib/commonjs/hooks/animation/use-screen-animation.js.map +1 -0
  23. package/lib/commonjs/hooks/bounds/use-bound-measurer.js +52 -0
  24. package/lib/commonjs/hooks/bounds/use-bound-measurer.js.map +1 -0
  25. package/lib/commonjs/hooks/gestures/use-build-gestures.js +239 -0
  26. package/lib/commonjs/hooks/gestures/use-build-gestures.js.map +1 -0
  27. package/lib/commonjs/hooks/gestures/use-scroll-progress.js +57 -0
  28. package/lib/commonjs/hooks/gestures/use-scroll-progress.js.map +1 -0
  29. package/lib/commonjs/hooks/use-stable-callback.js +17 -0
  30. package/lib/commonjs/hooks/use-stable-callback.js.map +1 -0
  31. package/lib/commonjs/index.js +37 -0
  32. package/lib/commonjs/index.js.map +1 -0
  33. package/lib/commonjs/integrations/native-stack/navigators/createNativeStackNavigator.js +68 -0
  34. package/lib/commonjs/integrations/native-stack/navigators/createNativeStackNavigator.js.map +1 -0
  35. package/lib/commonjs/integrations/native-stack/utils/debounce.js +16 -0
  36. package/lib/commonjs/integrations/native-stack/utils/debounce.js.map +1 -0
  37. package/lib/commonjs/integrations/native-stack/utils/getModalRoutesKeys.js +17 -0
  38. package/lib/commonjs/integrations/native-stack/utils/getModalRoutesKeys.js.map +1 -0
  39. package/lib/commonjs/integrations/native-stack/utils/useAnimatedHeaderHeight.js +18 -0
  40. package/lib/commonjs/integrations/native-stack/utils/useAnimatedHeaderHeight.js.map +1 -0
  41. package/lib/commonjs/integrations/native-stack/utils/useDismissedRouteError.js +22 -0
  42. package/lib/commonjs/integrations/native-stack/utils/useDismissedRouteError.js.map +1 -0
  43. package/lib/commonjs/integrations/native-stack/utils/useInvalidPreventRemoveError.js +25 -0
  44. package/lib/commonjs/integrations/native-stack/utils/useInvalidPreventRemoveError.js.map +1 -0
  45. package/lib/commonjs/integrations/native-stack/views/FontProcessor.js +10 -0
  46. package/lib/commonjs/integrations/native-stack/views/FontProcessor.js.map +1 -0
  47. package/lib/commonjs/integrations/native-stack/views/FontProcessor.native.js +18 -0
  48. package/lib/commonjs/integrations/native-stack/views/FontProcessor.native.js.map +1 -0
  49. package/lib/commonjs/integrations/native-stack/views/FooterComponent.js +17 -0
  50. package/lib/commonjs/integrations/native-stack/views/FooterComponent.js.map +1 -0
  51. package/lib/commonjs/integrations/native-stack/views/NativeStackView.js +138 -0
  52. package/lib/commonjs/integrations/native-stack/views/NativeStackView.js.map +1 -0
  53. package/lib/commonjs/integrations/native-stack/views/NativeStackView.native.js +497 -0
  54. package/lib/commonjs/integrations/native-stack/views/NativeStackView.native.js.map +1 -0
  55. package/lib/commonjs/integrations/native-stack/views/useHeaderConfigProps.js +203 -0
  56. package/lib/commonjs/integrations/native-stack/views/useHeaderConfigProps.js.map +1 -0
  57. package/lib/commonjs/package.json +1 -0
  58. package/lib/commonjs/providers/gestures.js +64 -0
  59. package/lib/commonjs/providers/gestures.js.map +1 -0
  60. package/lib/commonjs/providers/keys.js +35 -0
  61. package/lib/commonjs/providers/keys.js.map +1 -0
  62. package/lib/commonjs/stores/animations.js +39 -0
  63. package/lib/commonjs/stores/animations.js.map +1 -0
  64. package/lib/commonjs/stores/bounds.js +64 -0
  65. package/lib/commonjs/stores/bounds.js.map +1 -0
  66. package/lib/commonjs/stores/gestures.js +38 -0
  67. package/lib/commonjs/stores/gestures.js.map +1 -0
  68. package/lib/commonjs/stores/navigator-dismiss-state.js +23 -0
  69. package/lib/commonjs/stores/navigator-dismiss-state.js.map +1 -0
  70. package/lib/commonjs/stores/utils/reset-stores-for-screen.js +20 -0
  71. package/lib/commonjs/stores/utils/reset-stores-for-screen.js.map +1 -0
  72. package/lib/commonjs/types/animation.js +6 -0
  73. package/lib/commonjs/types/animation.js.map +1 -0
  74. package/lib/commonjs/types/bounds.js +6 -0
  75. package/lib/commonjs/types/bounds.js.map +1 -0
  76. package/lib/commonjs/types/core.js +6 -0
  77. package/lib/commonjs/types/core.js.map +1 -0
  78. package/lib/commonjs/types/gesture.js +2 -0
  79. package/lib/commonjs/types/gesture.js.map +1 -0
  80. package/lib/commonjs/types/navigator.js +6 -0
  81. package/lib/commonjs/types/navigator.js.map +1 -0
  82. package/lib/commonjs/types/utils.js +2 -0
  83. package/lib/commonjs/types/utils.js.map +1 -0
  84. package/lib/commonjs/utils/animation/animate.js +18 -0
  85. package/lib/commonjs/utils/animation/animate.js.map +1 -0
  86. package/lib/commonjs/utils/animation/run-transition.js +48 -0
  87. package/lib/commonjs/utils/animation/run-transition.js.map +1 -0
  88. package/lib/commonjs/utils/bounds/_types/builder.js +6 -0
  89. package/lib/commonjs/utils/bounds/_types/builder.js.map +1 -0
  90. package/lib/commonjs/utils/bounds/_types/geometry.js +2 -0
  91. package/lib/commonjs/utils/bounds/_types/geometry.js.map +1 -0
  92. package/lib/commonjs/utils/bounds/_types/get-bounds.js +6 -0
  93. package/lib/commonjs/utils/bounds/_types/get-bounds.js.map +1 -0
  94. package/lib/commonjs/utils/bounds/build-bound-styles.js +145 -0
  95. package/lib/commonjs/utils/bounds/build-bound-styles.js.map +1 -0
  96. package/lib/commonjs/utils/bounds/constants.js +31 -0
  97. package/lib/commonjs/utils/bounds/constants.js.map +1 -0
  98. package/lib/commonjs/utils/bounds/flatten-styles.js +27 -0
  99. package/lib/commonjs/utils/bounds/flatten-styles.js.map +1 -0
  100. package/lib/commonjs/utils/bounds/geometry.js +94 -0
  101. package/lib/commonjs/utils/bounds/geometry.js.map +1 -0
  102. package/lib/commonjs/utils/bounds/get-bounds.js +51 -0
  103. package/lib/commonjs/utils/bounds/get-bounds.js.map +1 -0
  104. package/lib/commonjs/utils/bounds/index.js +38 -0
  105. package/lib/commonjs/utils/bounds/index.js.map +1 -0
  106. package/lib/commonjs/utils/bounds/style-composers.js +199 -0
  107. package/lib/commonjs/utils/bounds/style-composers.js.map +1 -0
  108. package/lib/commonjs/utils/gesture/apply-gesture-activation-criteria.js +81 -0
  109. package/lib/commonjs/utils/gesture/apply-gesture-activation-criteria.js.map +1 -0
  110. package/lib/commonjs/utils/gesture/map-gesture-to-progress.js +17 -0
  111. package/lib/commonjs/utils/gesture/map-gesture-to-progress.js.map +1 -0
  112. package/lib/commonjs/utils/gesture/normalize-gesture-translation.js +21 -0
  113. package/lib/commonjs/utils/gesture/normalize-gesture-translation.js.map +1 -0
  114. package/lib/commonjs/utils/index.js +17 -0
  115. package/lib/commonjs/utils/index.js.map +1 -0
  116. package/lib/module/__tests__ /geometry.test.js +178 -0
  117. package/lib/module/__tests__ /geometry.test.js.map +1 -0
  118. package/lib/module/components/bounds-activator.js +28 -0
  119. package/lib/module/components/bounds-activator.js.map +1 -0
  120. package/lib/module/components/controllers/screen-lifecycle.js +60 -0
  121. package/lib/module/components/controllers/screen-lifecycle.js.map +1 -0
  122. package/lib/module/components/create-transition-aware-component.js +91 -0
  123. package/lib/module/components/create-transition-aware-component.js.map +1 -0
  124. package/lib/module/components/root-transition-aware.js +51 -0
  125. package/lib/module/components/root-transition-aware.js.map +1 -0
  126. package/lib/module/configs/index.js +5 -0
  127. package/lib/module/configs/index.js.map +1 -0
  128. package/lib/module/configs/presets.js +197 -0
  129. package/lib/module/configs/presets.js.map +1 -0
  130. package/lib/module/configs/specs.js +10 -0
  131. package/lib/module/configs/specs.js.map +1 -0
  132. package/lib/module/hooks/animation/use-associated-style.js +32 -0
  133. package/lib/module/hooks/animation/use-associated-style.js.map +1 -0
  134. package/lib/module/hooks/animation/use-screen-animation.js +115 -0
  135. package/lib/module/hooks/animation/use-screen-animation.js.map +1 -0
  136. package/lib/module/hooks/bounds/use-bound-measurer.js +47 -0
  137. package/lib/module/hooks/bounds/use-bound-measurer.js.map +1 -0
  138. package/lib/module/hooks/gestures/use-build-gestures.js +234 -0
  139. package/lib/module/hooks/gestures/use-build-gestures.js.map +1 -0
  140. package/lib/module/hooks/gestures/use-scroll-progress.js +52 -0
  141. package/lib/module/hooks/gestures/use-scroll-progress.js.map +1 -0
  142. package/lib/module/hooks/use-stable-callback.js +13 -0
  143. package/lib/module/hooks/use-stable-callback.js.map +1 -0
  144. package/lib/module/index.js +21 -0
  145. package/lib/module/index.js.map +1 -0
  146. package/lib/module/integrations/native-stack/navigators/createNativeStackNavigator.js +63 -0
  147. package/lib/module/integrations/native-stack/navigators/createNativeStackNavigator.js.map +1 -0
  148. package/lib/module/integrations/native-stack/utils/debounce.js +12 -0
  149. package/lib/module/integrations/native-stack/utils/debounce.js.map +1 -0
  150. package/lib/module/integrations/native-stack/utils/getModalRoutesKeys.js +12 -0
  151. package/lib/module/integrations/native-stack/utils/getModalRoutesKeys.js.map +1 -0
  152. package/lib/module/integrations/native-stack/utils/useAnimatedHeaderHeight.js +12 -0
  153. package/lib/module/integrations/native-stack/utils/useAnimatedHeaderHeight.js.map +1 -0
  154. package/lib/module/integrations/native-stack/utils/useDismissedRouteError.js +17 -0
  155. package/lib/module/integrations/native-stack/utils/useDismissedRouteError.js.map +1 -0
  156. package/lib/module/integrations/native-stack/utils/useInvalidPreventRemoveError.js +20 -0
  157. package/lib/module/integrations/native-stack/utils/useInvalidPreventRemoveError.js.map +1 -0
  158. package/lib/module/integrations/native-stack/views/FontProcessor.js +6 -0
  159. package/lib/module/integrations/native-stack/views/FontProcessor.js.map +1 -0
  160. package/lib/module/integrations/native-stack/views/FontProcessor.native.js +12 -0
  161. package/lib/module/integrations/native-stack/views/FontProcessor.native.js.map +1 -0
  162. package/lib/module/integrations/native-stack/views/FooterComponent.js +13 -0
  163. package/lib/module/integrations/native-stack/views/FooterComponent.js.map +1 -0
  164. package/lib/module/integrations/native-stack/views/NativeStackView.js +133 -0
  165. package/lib/module/integrations/native-stack/views/NativeStackView.js.map +1 -0
  166. package/lib/module/integrations/native-stack/views/NativeStackView.native.js +492 -0
  167. package/lib/module/integrations/native-stack/views/NativeStackView.native.js.map +1 -0
  168. package/lib/module/integrations/native-stack/views/useHeaderConfigProps.js +199 -0
  169. package/lib/module/integrations/native-stack/views/useHeaderConfigProps.js.map +1 -0
  170. package/lib/module/providers/gestures.js +58 -0
  171. package/lib/module/providers/gestures.js.map +1 -0
  172. package/lib/module/providers/keys.js +29 -0
  173. package/lib/module/providers/keys.js.map +1 -0
  174. package/lib/module/stores/animations.js +33 -0
  175. package/lib/module/stores/animations.js.map +1 -0
  176. package/lib/module/stores/bounds.js +60 -0
  177. package/lib/module/stores/bounds.js.map +1 -0
  178. package/lib/module/stores/gestures.js +34 -0
  179. package/lib/module/stores/gestures.js.map +1 -0
  180. package/lib/module/stores/navigator-dismiss-state.js +19 -0
  181. package/lib/module/stores/navigator-dismiss-state.js.map +1 -0
  182. package/lib/module/stores/utils/reset-stores-for-screen.js +16 -0
  183. package/lib/module/stores/utils/reset-stores-for-screen.js.map +1 -0
  184. package/lib/module/types/animation.js +4 -0
  185. package/lib/module/types/animation.js.map +1 -0
  186. package/lib/module/types/bounds.js +4 -0
  187. package/lib/module/types/bounds.js.map +1 -0
  188. package/lib/module/types/core.js +4 -0
  189. package/lib/module/types/core.js.map +1 -0
  190. package/lib/module/types/gesture.js +2 -0
  191. package/lib/module/types/gesture.js.map +1 -0
  192. package/lib/module/types/navigator.js +4 -0
  193. package/lib/module/types/navigator.js.map +1 -0
  194. package/lib/module/types/utils.js +2 -0
  195. package/lib/module/types/utils.js.map +1 -0
  196. package/lib/module/utils/animation/animate.js +13 -0
  197. package/lib/module/utils/animation/animate.js.map +1 -0
  198. package/lib/module/utils/animation/run-transition.js +43 -0
  199. package/lib/module/utils/animation/run-transition.js.map +1 -0
  200. package/lib/module/utils/bounds/_types/builder.js +4 -0
  201. package/lib/module/utils/bounds/_types/builder.js.map +1 -0
  202. package/lib/module/utils/bounds/_types/geometry.js +2 -0
  203. package/lib/module/utils/bounds/_types/geometry.js.map +1 -0
  204. package/lib/module/utils/bounds/_types/get-bounds.js +4 -0
  205. package/lib/module/utils/bounds/_types/get-bounds.js.map +1 -0
  206. package/lib/module/utils/bounds/build-bound-styles.js +141 -0
  207. package/lib/module/utils/bounds/build-bound-styles.js.map +1 -0
  208. package/lib/module/utils/bounds/constants.js +26 -0
  209. package/lib/module/utils/bounds/constants.js.map +1 -0
  210. package/lib/module/utils/bounds/flatten-styles.js +23 -0
  211. package/lib/module/utils/bounds/flatten-styles.js.map +1 -0
  212. package/lib/module/utils/bounds/geometry.js +89 -0
  213. package/lib/module/utils/bounds/geometry.js.map +1 -0
  214. package/lib/module/utils/bounds/get-bounds.js +46 -0
  215. package/lib/module/utils/bounds/get-bounds.js.map +1 -0
  216. package/lib/module/utils/bounds/index.js +33 -0
  217. package/lib/module/utils/bounds/index.js.map +1 -0
  218. package/lib/module/utils/bounds/style-composers.js +191 -0
  219. package/lib/module/utils/bounds/style-composers.js.map +1 -0
  220. package/lib/module/utils/gesture/apply-gesture-activation-criteria.js +76 -0
  221. package/lib/module/utils/gesture/apply-gesture-activation-criteria.js.map +1 -0
  222. package/lib/module/utils/gesture/map-gesture-to-progress.js +12 -0
  223. package/lib/module/utils/gesture/map-gesture-to-progress.js.map +1 -0
  224. package/lib/module/utils/gesture/normalize-gesture-translation.js +16 -0
  225. package/lib/module/utils/gesture/normalize-gesture-translation.js.map +1 -0
  226. package/lib/module/utils/index.js +4 -0
  227. package/lib/module/utils/index.js.map +1 -0
  228. package/lib/typescript/components/bounds-activator.d.ts +8 -0
  229. package/lib/typescript/components/bounds-activator.d.ts.map +1 -0
  230. package/lib/typescript/components/controllers/screen-lifecycle.d.ts +6 -0
  231. package/lib/typescript/components/controllers/screen-lifecycle.d.ts.map +1 -0
  232. package/lib/typescript/components/create-transition-aware-component.d.ts +9 -0
  233. package/lib/typescript/components/create-transition-aware-component.d.ts.map +1 -0
  234. package/lib/typescript/components/root-transition-aware.d.ts +6 -0
  235. package/lib/typescript/components/root-transition-aware.d.ts.map +1 -0
  236. package/lib/typescript/configs/index.d.ts +3 -0
  237. package/lib/typescript/configs/index.d.ts.map +1 -0
  238. package/lib/typescript/configs/presets.d.ts +9 -0
  239. package/lib/typescript/configs/presets.d.ts.map +1 -0
  240. package/lib/typescript/configs/specs.d.ts +3 -0
  241. package/lib/typescript/configs/specs.d.ts.map +1 -0
  242. package/lib/typescript/hooks/animation/use-associated-style.d.ts +11 -0
  243. package/lib/typescript/hooks/animation/use-associated-style.d.ts.map +1 -0
  244. package/lib/typescript/hooks/animation/use-screen-animation.d.ts +7 -0
  245. package/lib/typescript/hooks/animation/use-screen-animation.d.ts.map +1 -0
  246. package/lib/typescript/hooks/bounds/use-bound-measurer.d.ts +18 -0
  247. package/lib/typescript/hooks/bounds/use-bound-measurer.d.ts.map +1 -0
  248. package/lib/typescript/hooks/gestures/use-build-gestures.d.ts +11 -0
  249. package/lib/typescript/hooks/gestures/use-build-gestures.d.ts.map +1 -0
  250. package/lib/typescript/hooks/gestures/use-scroll-progress.d.ts +14 -0
  251. package/lib/typescript/hooks/gestures/use-scroll-progress.d.ts.map +1 -0
  252. package/lib/typescript/hooks/use-stable-callback.d.ts +2 -0
  253. package/lib/typescript/hooks/use-stable-callback.d.ts.map +1 -0
  254. package/lib/typescript/index.d.ts +1275 -0
  255. package/lib/typescript/index.d.ts.map +1 -0
  256. package/lib/typescript/integrations/native-stack/navigators/createNativeStackNavigator.d.ts +16 -0
  257. package/lib/typescript/integrations/native-stack/navigators/createNativeStackNavigator.d.ts.map +1 -0
  258. package/lib/typescript/integrations/native-stack/utils/debounce.d.ts +2 -0
  259. package/lib/typescript/integrations/native-stack/utils/debounce.d.ts.map +1 -0
  260. package/lib/typescript/integrations/native-stack/utils/getModalRoutesKeys.d.ts +4 -0
  261. package/lib/typescript/integrations/native-stack/utils/getModalRoutesKeys.d.ts.map +1 -0
  262. package/lib/typescript/integrations/native-stack/utils/useAnimatedHeaderHeight.d.ts +5 -0
  263. package/lib/typescript/integrations/native-stack/utils/useAnimatedHeaderHeight.d.ts.map +1 -0
  264. package/lib/typescript/integrations/native-stack/utils/useDismissedRouteError.d.ts +6 -0
  265. package/lib/typescript/integrations/native-stack/utils/useDismissedRouteError.d.ts.map +1 -0
  266. package/lib/typescript/integrations/native-stack/utils/useInvalidPreventRemoveError.d.ts +3 -0
  267. package/lib/typescript/integrations/native-stack/utils/useInvalidPreventRemoveError.d.ts.map +1 -0
  268. package/lib/typescript/integrations/native-stack/views/FontProcessor.d.ts +2 -0
  269. package/lib/typescript/integrations/native-stack/views/FontProcessor.d.ts.map +1 -0
  270. package/lib/typescript/integrations/native-stack/views/FontProcessor.native.d.ts +2 -0
  271. package/lib/typescript/integrations/native-stack/views/FontProcessor.native.d.ts.map +1 -0
  272. package/lib/typescript/integrations/native-stack/views/FooterComponent.d.ts +7 -0
  273. package/lib/typescript/integrations/native-stack/views/FooterComponent.d.ts.map +1 -0
  274. package/lib/typescript/integrations/native-stack/views/NativeStackView.d.ts +11 -0
  275. package/lib/typescript/integrations/native-stack/views/NativeStackView.d.ts.map +1 -0
  276. package/lib/typescript/integrations/native-stack/views/NativeStackView.native.d.ts +11 -0
  277. package/lib/typescript/integrations/native-stack/views/NativeStackView.native.d.ts.map +1 -0
  278. package/lib/typescript/integrations/native-stack/views/useHeaderConfigProps.d.ts +44 -0
  279. package/lib/typescript/integrations/native-stack/views/useHeaderConfigProps.d.ts.map +1 -0
  280. package/lib/typescript/providers/gestures.d.ts +22 -0
  281. package/lib/typescript/providers/gestures.d.ts.map +1 -0
  282. package/lib/typescript/providers/keys.d.ts +16 -0
  283. package/lib/typescript/providers/keys.d.ts.map +1 -0
  284. package/lib/typescript/stores/animations.d.ts +17 -0
  285. package/lib/typescript/stores/animations.d.ts.map +1 -0
  286. package/lib/typescript/stores/bounds.d.ts +21 -0
  287. package/lib/typescript/stores/bounds.d.ts.map +1 -0
  288. package/lib/typescript/stores/gestures.d.ts +21 -0
  289. package/lib/typescript/stores/gestures.d.ts.map +1 -0
  290. package/lib/typescript/stores/navigator-dismiss-state.d.ts +7 -0
  291. package/lib/typescript/stores/navigator-dismiss-state.d.ts.map +1 -0
  292. package/lib/typescript/stores/utils/reset-stores-for-screen.d.ts +6 -0
  293. package/lib/typescript/stores/utils/reset-stores-for-screen.d.ts.map +1 -0
  294. package/lib/typescript/types/animation.d.ts +65 -0
  295. package/lib/typescript/types/animation.d.ts.map +1 -0
  296. package/lib/typescript/types/bounds.d.ts +73 -0
  297. package/lib/typescript/types/bounds.d.ts.map +1 -0
  298. package/lib/typescript/types/core.d.ts +47 -0
  299. package/lib/typescript/types/core.d.ts.map +1 -0
  300. package/lib/typescript/types/gesture.d.ts +28 -0
  301. package/lib/typescript/types/gesture.d.ts.map +1 -0
  302. package/lib/typescript/types/navigator.d.ts +683 -0
  303. package/lib/typescript/types/navigator.d.ts.map +1 -0
  304. package/lib/typescript/types/utils.d.ts +5 -0
  305. package/lib/typescript/types/utils.d.ts.map +1 -0
  306. package/lib/typescript/utils/animation/animate.d.ts +4 -0
  307. package/lib/typescript/utils/animation/animate.d.ts.map +1 -0
  308. package/lib/typescript/utils/animation/run-transition.d.ts +11 -0
  309. package/lib/typescript/utils/animation/run-transition.d.ts.map +1 -0
  310. package/lib/typescript/utils/bounds/_types/builder.d.ts +36 -0
  311. package/lib/typescript/utils/bounds/_types/builder.d.ts.map +1 -0
  312. package/lib/typescript/utils/bounds/_types/geometry.d.ts +16 -0
  313. package/lib/typescript/utils/bounds/_types/geometry.d.ts.map +1 -0
  314. package/lib/typescript/utils/bounds/_types/get-bounds.d.ts +10 -0
  315. package/lib/typescript/utils/bounds/_types/get-bounds.d.ts.map +1 -0
  316. package/lib/typescript/utils/bounds/build-bound-styles.d.ts +4 -0
  317. package/lib/typescript/utils/bounds/build-bound-styles.d.ts.map +1 -0
  318. package/lib/typescript/utils/bounds/constants.d.ts +7 -0
  319. package/lib/typescript/utils/bounds/constants.d.ts.map +1 -0
  320. package/lib/typescript/utils/bounds/flatten-styles.d.ts +2 -0
  321. package/lib/typescript/utils/bounds/flatten-styles.d.ts.map +1 -0
  322. package/lib/typescript/utils/bounds/geometry.d.ts +24 -0
  323. package/lib/typescript/utils/bounds/geometry.d.ts.map +1 -0
  324. package/lib/typescript/utils/bounds/get-bounds.d.ts +4 -0
  325. package/lib/typescript/utils/bounds/get-bounds.d.ts.map +1 -0
  326. package/lib/typescript/utils/bounds/index.d.ts +15 -0
  327. package/lib/typescript/utils/bounds/index.d.ts.map +1 -0
  328. package/lib/typescript/utils/bounds/style-composers.d.ts +40 -0
  329. package/lib/typescript/utils/bounds/style-composers.d.ts.map +1 -0
  330. package/lib/typescript/utils/gesture/apply-gesture-activation-criteria.d.ts +17 -0
  331. package/lib/typescript/utils/gesture/apply-gesture-activation-criteria.d.ts.map +1 -0
  332. package/lib/typescript/utils/gesture/map-gesture-to-progress.d.ts +5 -0
  333. package/lib/typescript/utils/gesture/map-gesture-to-progress.d.ts.map +1 -0
  334. package/lib/typescript/utils/gesture/normalize-gesture-translation.d.ts +6 -0
  335. package/lib/typescript/utils/gesture/normalize-gesture-translation.d.ts.map +1 -0
  336. package/lib/typescript/utils/index.d.ts +2 -0
  337. package/lib/typescript/utils/index.d.ts.map +1 -0
  338. package/package.json +33 -16
  339. package/dist/index.d.mts +0 -1473
  340. package/dist/index.d.ts +0 -1473
  341. package/dist/index.js +0 -1169
  342. package/dist/index.js.map +0 -1
  343. package/dist/index.mjs +0 -1159
  344. package/dist/index.mjs.map +0 -1
package/dist/index.d.mts DELETED
@@ -1,1473 +0,0 @@
1
- import * as _react_navigation_routers from '@react-navigation/routers';
2
- import * as _react_navigation_core from '@react-navigation/core';
3
- import { ScreenListeners, NavigationState, EventMapBase, RouteProp, ParamListBase } from '@react-navigation/native';
4
- import * as react_native from 'react-native';
5
- import { ScaledSize, View } from 'react-native';
6
- import * as react_native_reanimated from 'react-native-reanimated';
7
- import { SharedValue, StyleProps, WithSpringConfig, WithTimingConfig, AnimatedProps } from 'react-native-reanimated';
8
- import { EdgeInsets } from 'react-native-safe-area-context';
9
- import * as react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe from 'react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe';
10
- import * as react from 'react';
11
- import react__default, { ComponentType } from 'react';
12
-
13
- type Any = any;
14
- interface TransitionConfig {
15
- /**
16
- * The user-provided function to calculate styles based on animation progress.
17
- */
18
- screenStyleInterpolator?: ScreenStyleInterpolator;
19
- /**
20
- * The Reanimated animation config for opening and closing transitions.
21
- */
22
- transitionSpec?: TransitionSpec;
23
- /**
24
- * Whether the gesture is enabled.
25
- */
26
- gestureEnabled?: boolean;
27
- /**
28
- * The direction of the swipe gesture used to dismiss the screen.
29
- */
30
- gestureDirection?: GestureDirection | GestureDirection[];
31
- /**
32
- * How much the gesture's final velocity impacts the dismiss decision.
33
- */
34
- gestureVelocityImpact?: number;
35
- /**
36
- * Distance threshold for gesture recognition throughout the screen.
37
- */
38
- gestureResponseDistance?: number;
39
- }
40
- /**
41
- * The comprehensive props object passed to a `ScreenStyleInterpolator` function.
42
- * It contains all the necessary data to calculate styles for a transition.
43
- */
44
- interface ScreenInterpolationProps {
45
- /** Values for the screen that is the focus of the transition (e.g., the one opening). */
46
- current: {
47
- /** The programmatic animation progress of the screen (a `SharedValue` from 0 to 1). */
48
- progress: SharedValue<number>;
49
- /** Live gesture values for the screen. */
50
- gesture: GestureValues;
51
- };
52
- /** Values for the screen immediately behind the current one in the screen. */
53
- next: {
54
- /** The programmatic animation progress of the next screen. */
55
- progress: SharedValue<number>;
56
- /** Live gesture values for the next screen. */
57
- gesture: GestureValues;
58
- } | undefined;
59
- /** Layout measurements for the screen. */
60
- layouts: {
61
- /** The `width` and `height` of the screen container. */
62
- screen: ScaledSize;
63
- };
64
- /** The safe area insets for the screen. */
65
- insets: EdgeInsets;
66
- /** A flag indicating if the current screen is in the process of closing. */
67
- closing: boolean;
68
- }
69
- type GestureValues = {
70
- /**
71
- * A `SharedValue` indicating if the user's finger is on the screen (0 or 1).
72
- */
73
- isDragging: SharedValue<number>;
74
- /**
75
- * The live horizontal translation of the gesture.
76
- */
77
- x: SharedValue<number>;
78
- /**
79
- * The live vertical translation of the gesture.
80
- */
81
- y: SharedValue<number>;
82
- /**
83
- * The live normalized horizontal translation of the gesture (-1 to 1).
84
- */
85
- normalizedX: SharedValue<number>;
86
- /**
87
- * The live normalized vertical translation of the gesture (-1 to 1).
88
- */
89
- normalizedY: SharedValue<number>;
90
- /**
91
- * A flag indicating if the screen is in the process of dismissing.
92
- */
93
- isDismissing: SharedValue<number>;
94
- };
95
- type ScreenStyleInterpolator = (props: ScreenInterpolationProps) => TransitionInterpolatedStyle;
96
- type TransitionInterpolatedStyle = {
97
- /**
98
- * Animated style for the main screen view. Styles are only applied when Transition.View is present.
99
- */
100
- contentStyle?: StyleProps;
101
- /**
102
- * Animated style for a semi-transparent overlay. Styles are only applied when Transition.View is present.
103
- */
104
- overlayStyle?: StyleProps;
105
- };
106
- /**
107
- * A Reanimated animation configuration object.
108
- */
109
- type AnimationConfig = WithSpringConfig | WithTimingConfig;
110
- /**
111
- * Defines separate animation configurations for opening and closing a screen.
112
- */
113
- interface TransitionSpec {
114
- open?: AnimationConfig;
115
- close?: AnimationConfig;
116
- }
117
- type GestureDirection = "horizontal" | "horizontal-inverted" | "vertical" | "vertical-inverted" | "bidirectional";
118
- type TransitionListeners = ScreenListeners<NavigationState, EventMapBase>;
119
-
120
- interface TransitionEventHandlersProps extends TransitionConfig {
121
- navigation: Any;
122
- route: RouteProp<ParamListBase, string>;
123
- }
124
-
125
- declare function createTransitionAwareComponent<P extends object>(Wrapped: ComponentType<P>): react__default.MemoExoticComponent<react__default.ForwardRefExoticComponent<AnimatedProps<P> & react__default.RefAttributes<react__default.ComponentRef<typeof Wrapped>>>>;
126
-
127
- declare function createTransitionAwareScrollable<P extends object>(ScrollableComponent: ComponentType<P>): React.MemoExoticComponent<React.ForwardRefExoticComponent<AnimatedProps<P> & React.RefAttributes<React.ComponentRef<typeof ScrollableComponent>>>>;
128
-
129
- declare const SlideFromTop: (config?: Partial<TransitionConfig>) => TransitionConfig;
130
- declare const ZoomIn: (config?: Partial<TransitionConfig>) => TransitionConfig;
131
- declare const SlideFromBottom: (config?: Partial<TransitionConfig>) => TransitionConfig;
132
- declare const DraggableCard: (config?: Partial<TransitionConfig>) => TransitionConfig;
133
- declare const ElasticCard: (config?: Partial<TransitionConfig> & {
134
- elasticFactor?: number;
135
- }) => TransitionConfig;
136
-
137
- declare const presets_DraggableCard: typeof DraggableCard;
138
- declare const presets_ElasticCard: typeof ElasticCard;
139
- declare const presets_SlideFromBottom: typeof SlideFromBottom;
140
- declare const presets_SlideFromTop: typeof SlideFromTop;
141
- declare const presets_ZoomIn: typeof ZoomIn;
142
- declare namespace presets {
143
- export { presets_DraggableCard as DraggableCard, presets_ElasticCard as ElasticCard, presets_SlideFromBottom as SlideFromBottom, presets_SlideFromTop as SlideFromTop, presets_ZoomIn as ZoomIn };
144
- }
145
-
146
- declare const DefaultSpec: WithSpringConfig;
147
-
148
- declare const specs_DefaultSpec: typeof DefaultSpec;
149
- declare namespace specs {
150
- export { specs_DefaultSpec as DefaultSpec };
151
- }
152
-
153
- declare const useScreenAnimation: () => ScreenInterpolationProps;
154
-
155
- declare const _default: {
156
- View: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
157
- children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
158
- hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
159
- id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
160
- needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
161
- onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
162
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
163
- removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
164
- testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
165
- nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
166
- collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
167
- collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
168
- renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
169
- focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
170
- tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
171
- shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
172
- isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
173
- hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
174
- tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
175
- tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
176
- tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
177
- tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
178
- onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
179
- onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
180
- onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
181
- onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
182
- onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
183
- onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
184
- onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
185
- onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
186
- onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
187
- onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
188
- onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
189
- onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
190
- onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
191
- onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
192
- onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
193
- onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
194
- onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
195
- onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
196
- onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
197
- onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
198
- onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
199
- onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
200
- onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
201
- onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
202
- onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
203
- onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
204
- onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
205
- onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
206
- onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
207
- accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
208
- accessibilityActions?: readonly Readonly<{
209
- name: react_native.AccessibilityActionName | string;
210
- label?: string | undefined;
211
- }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
212
- name: react_native.AccessibilityActionName | string;
213
- label?: string | undefined;
214
- }>[] | undefined> | undefined;
215
- accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
216
- 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
217
- accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
218
- accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
219
- 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
220
- 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
221
- 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
222
- 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
223
- 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
224
- accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
225
- accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
226
- 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
227
- 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
228
- 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
229
- 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
230
- onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
231
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
232
- 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
233
- 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
234
- role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
235
- accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
236
- 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
237
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
238
- 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
239
- accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
240
- accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
241
- onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
242
- onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
243
- onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
244
- accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
245
- accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
246
- accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
247
- accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
248
- } & {
249
- style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
250
- } & {
251
- layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
252
- entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
253
- exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
254
- } & {
255
- sharedTransitionTag?: string;
256
- sharedTransitionStyle?: react_native_reanimated.SharedTransition;
257
- } & {
258
- animatedProps?: Partial<{
259
- children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
260
- hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
261
- id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
262
- needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
263
- onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
264
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
265
- removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
266
- testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
267
- nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
268
- collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
269
- collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
270
- renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
271
- focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
272
- tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
273
- shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
274
- isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
275
- hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
276
- tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
277
- tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
278
- tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
279
- tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
280
- onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
281
- onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
282
- onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
283
- onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
284
- onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
285
- onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
286
- onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
287
- onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
288
- onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
289
- onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
290
- onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
291
- onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
292
- onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
293
- onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
294
- onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
295
- onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
296
- onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
297
- onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
298
- onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
299
- onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
300
- onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
301
- onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
302
- onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
303
- onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
304
- onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
305
- onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
306
- onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
307
- onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
308
- onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
309
- accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
310
- accessibilityActions?: readonly Readonly<{
311
- name: react_native.AccessibilityActionName | string;
312
- label?: string | undefined;
313
- }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
314
- name: react_native.AccessibilityActionName | string;
315
- label?: string | undefined;
316
- }>[] | undefined> | undefined;
317
- accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
318
- 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
319
- accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
320
- accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
321
- 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
322
- 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
323
- 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
324
- 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
325
- 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
326
- accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
327
- accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
328
- 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
329
- 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
330
- 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
331
- 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
332
- onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
333
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
334
- 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
335
- 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
336
- role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
337
- accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
338
- 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
339
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
340
- 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
341
- accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
342
- accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
343
- onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
344
- onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
345
- onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
346
- accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
347
- accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
348
- accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
349
- accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
350
- } & {
351
- style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
352
- } & {
353
- layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
354
- entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
355
- exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
356
- } & {
357
- sharedTransitionTag?: string;
358
- sharedTransitionStyle?: react_native_reanimated.SharedTransition;
359
- }> | undefined;
360
- } & react.RefAttributes<never>>>;
361
- Pressable: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
362
- children?: react.ReactNode | ((state: react_native.PressableStateCallbackType) => React.ReactNode) | react_native_reanimated.SharedValue<react.ReactNode | ((state: react_native.PressableStateCallbackType) => React.ReactNode)>;
363
- hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
364
- id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
365
- needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
366
- onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
367
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
368
- removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
369
- testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
370
- nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
371
- collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
372
- collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
373
- renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
374
- focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
375
- tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
376
- shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
377
- isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
378
- hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
379
- tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
380
- tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
381
- tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
382
- tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
383
- onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
384
- onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
385
- onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
386
- onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
387
- onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
388
- onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
389
- onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
390
- onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
391
- onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
392
- onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
393
- onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
394
- onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
395
- onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
396
- onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
397
- onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
398
- onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
399
- onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
400
- onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
401
- onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
402
- onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
403
- onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
404
- onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
405
- onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
406
- onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
407
- onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
408
- onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
409
- onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
410
- onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
411
- onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
412
- accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
413
- accessibilityActions?: readonly Readonly<{
414
- name: react_native.AccessibilityActionName | string;
415
- label?: string | undefined;
416
- }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
417
- name: react_native.AccessibilityActionName | string;
418
- label?: string | undefined;
419
- }>[] | undefined> | undefined;
420
- accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
421
- 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
422
- accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
423
- accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
424
- 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
425
- 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
426
- 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
427
- 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
428
- 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
429
- accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
430
- accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
431
- 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
432
- 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
433
- 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
434
- 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
435
- onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
436
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
437
- 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
438
- 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
439
- role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
440
- accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
441
- 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
442
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
443
- 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
444
- accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
445
- accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
446
- onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
447
- onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
448
- onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
449
- accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
450
- accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
451
- accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
452
- accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
453
- ref?: react.Ref<View> | react_native_reanimated.SharedValue<react.Ref<View> | undefined> | undefined;
454
- key?: react.Key | react_native_reanimated.SharedValue<react.Key | null | undefined> | null | undefined;
455
- onHoverIn?: ((event: react_native.MouseEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.MouseEvent) => void) | null | undefined> | null | undefined;
456
- onHoverOut?: ((event: react_native.MouseEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.MouseEvent) => void) | null | undefined> | null | undefined;
457
- onPress?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
458
- onPressIn?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
459
- onPressOut?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
460
- onLongPress?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
461
- onBlur?: ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | null | undefined> | null | undefined;
462
- onFocus?: ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | null | undefined> | null | undefined;
463
- cancelable?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
464
- delayHoverIn?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
465
- delayHoverOut?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
466
- delayLongPress?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
467
- disabled?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
468
- pressRetentionOffset?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
469
- android_disableSound?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
470
- android_ripple?: react_native.PressableAndroidRippleConfig | react_native_reanimated.SharedValue<react_native.PressableAndroidRippleConfig | null | undefined> | null | undefined;
471
- testOnly_pressed?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
472
- unstable_pressDelay?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
473
- } & {
474
- style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle> | ((state: react_native.PressableStateCallbackType) => react_native.StyleProp<react_native.ViewStyle>)>>;
475
- } & {
476
- layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
477
- entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
478
- exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
479
- } & {
480
- sharedTransitionTag?: string;
481
- sharedTransitionStyle?: react_native_reanimated.SharedTransition;
482
- } & {
483
- animatedProps?: Partial<{
484
- children?: react.ReactNode | ((state: react_native.PressableStateCallbackType) => React.ReactNode) | react_native_reanimated.SharedValue<react.ReactNode | ((state: react_native.PressableStateCallbackType) => React.ReactNode)>;
485
- hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
486
- id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
487
- needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
488
- onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
489
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
490
- removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
491
- testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
492
- nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
493
- collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
494
- collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
495
- renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
496
- focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
497
- tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
498
- shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
499
- isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
500
- hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
501
- tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
502
- tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
503
- tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
504
- tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
505
- onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
506
- onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
507
- onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
508
- onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
509
- onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
510
- onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
511
- onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
512
- onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
513
- onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
514
- onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
515
- onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
516
- onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
517
- onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
518
- onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
519
- onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
520
- onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
521
- onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
522
- onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
523
- onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
524
- onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
525
- onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
526
- onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
527
- onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
528
- onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
529
- onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
530
- onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
531
- onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
532
- onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
533
- onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
534
- accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
535
- accessibilityActions?: readonly Readonly<{
536
- name: react_native.AccessibilityActionName | string;
537
- label?: string | undefined;
538
- }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
539
- name: react_native.AccessibilityActionName | string;
540
- label?: string | undefined;
541
- }>[] | undefined> | undefined;
542
- accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
543
- 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
544
- accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
545
- accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
546
- 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
547
- 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
548
- 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
549
- 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
550
- 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
551
- accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
552
- accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
553
- 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
554
- 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
555
- 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
556
- 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
557
- onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
558
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
559
- 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
560
- 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
561
- role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
562
- accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
563
- 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
564
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
565
- 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
566
- accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
567
- accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
568
- onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
569
- onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
570
- onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
571
- accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
572
- accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
573
- accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
574
- accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
575
- ref?: react.Ref<View> | react_native_reanimated.SharedValue<react.Ref<View> | undefined> | undefined;
576
- key?: react.Key | react_native_reanimated.SharedValue<react.Key | null | undefined> | null | undefined;
577
- onHoverIn?: ((event: react_native.MouseEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.MouseEvent) => void) | null | undefined> | null | undefined;
578
- onHoverOut?: ((event: react_native.MouseEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.MouseEvent) => void) | null | undefined> | null | undefined;
579
- onPress?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
580
- onPressIn?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
581
- onPressOut?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
582
- onLongPress?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
583
- onBlur?: ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | null | undefined> | null | undefined;
584
- onFocus?: ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | null | undefined> | null | undefined;
585
- cancelable?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
586
- delayHoverIn?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
587
- delayHoverOut?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
588
- delayLongPress?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
589
- disabled?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
590
- pressRetentionOffset?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
591
- android_disableSound?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
592
- android_ripple?: react_native.PressableAndroidRippleConfig | react_native_reanimated.SharedValue<react_native.PressableAndroidRippleConfig | null | undefined> | null | undefined;
593
- testOnly_pressed?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
594
- unstable_pressDelay?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
595
- } & {
596
- style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle> | ((state: react_native.PressableStateCallbackType) => react_native.StyleProp<react_native.ViewStyle>)>>;
597
- } & {
598
- layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
599
- entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
600
- exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
601
- } & {
602
- sharedTransitionTag?: string;
603
- sharedTransitionStyle?: react_native_reanimated.SharedTransition;
604
- }> | undefined;
605
- } & react.RefAttributes<View | react.Component<react_native.PressableProps & react.RefAttributes<View>, any, any>>>>;
606
- ScrollView: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
607
- children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
608
- hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
609
- id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
610
- needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
611
- onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
612
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
613
- removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
614
- testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
615
- nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
616
- collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
617
- collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
618
- renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
619
- focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
620
- tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
621
- shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
622
- isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
623
- hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
624
- tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
625
- tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
626
- tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
627
- tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
628
- onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
629
- onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
630
- onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
631
- onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
632
- onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
633
- onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
634
- onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
635
- onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
636
- onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
637
- onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
638
- onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
639
- onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
640
- onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
641
- onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
642
- onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
643
- onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
644
- onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
645
- onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
646
- onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
647
- onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
648
- onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
649
- onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
650
- onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
651
- onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
652
- onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
653
- onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
654
- onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
655
- onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
656
- onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
657
- accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
658
- accessibilityActions?: readonly Readonly<{
659
- name: react_native.AccessibilityActionName | string;
660
- label?: string | undefined;
661
- }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
662
- name: react_native.AccessibilityActionName | string;
663
- label?: string | undefined;
664
- }>[] | undefined> | undefined;
665
- accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
666
- 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
667
- accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
668
- accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
669
- 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
670
- 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
671
- 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
672
- 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
673
- 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
674
- accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
675
- accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
676
- 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
677
- 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
678
- 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
679
- 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
680
- onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
681
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
682
- 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
683
- 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
684
- role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
685
- accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
686
- 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
687
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
688
- 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
689
- accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
690
- accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
691
- onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
692
- onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
693
- onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
694
- accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
695
- accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
696
- accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
697
- accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
698
- decelerationRate?: number | "normal" | "fast" | react_native_reanimated.SharedValue<number | "normal" | "fast" | undefined> | undefined;
699
- horizontal?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
700
- invertStickyHeaders?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
701
- keyboardDismissMode?: "none" | "interactive" | "on-drag" | react_native_reanimated.SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
702
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | react_native_reanimated.SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
703
- onContentSizeChange?: ((w: number, h: number) => void) | react_native_reanimated.SharedValue<((w: number, h: number) => void) | undefined> | undefined;
704
- onScroll?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
705
- onScrollBeginDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
706
- onScrollEndDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
707
- onMomentumScrollEnd?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
708
- onMomentumScrollBegin?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
709
- pagingEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
710
- scrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
711
- showsHorizontalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
712
- showsVerticalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
713
- stickyHeaderHiddenOnScroll?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
714
- refreshControl?: react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | react_native_reanimated.SharedValue<react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | undefined> | undefined;
715
- snapToInterval?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
716
- snapToOffsets?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
717
- snapToStart?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
718
- snapToEnd?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
719
- stickyHeaderIndices?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
720
- disableIntervalMomentum?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
721
- disableScrollViewPanResponder?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
722
- StickyHeaderComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | undefined> | undefined;
723
- alwaysBounceHorizontal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
724
- alwaysBounceVertical?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
725
- automaticallyAdjustContentInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
726
- automaticallyAdjustKeyboardInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
727
- automaticallyAdjustsScrollIndicatorInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
728
- bounces?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
729
- bouncesZoom?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
730
- canCancelContentTouches?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
731
- centerContent?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
732
- contentInset?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
733
- contentOffset?: react_native.PointProp | react_native_reanimated.SharedValue<react_native.PointProp | undefined> | undefined;
734
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | react_native_reanimated.SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
735
- directionalLockEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
736
- maintainVisibleContentPosition?: {
737
- autoscrollToTopThreshold?: number | null | undefined;
738
- minIndexForVisible: number;
739
- } | react_native_reanimated.SharedValue<{
740
- autoscrollToTopThreshold?: number | null | undefined;
741
- minIndexForVisible: number;
742
- } | null | undefined> | null | undefined;
743
- maximumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
744
- minimumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
745
- onScrollAnimationEnd?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
746
- pinchGestureEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
747
- scrollEventThrottle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
748
- scrollIndicatorInsets?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
749
- scrollToOverflowEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
750
- scrollsToTop?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
751
- snapToAlignment?: "center" | "end" | "start" | react_native_reanimated.SharedValue<"center" | "end" | "start" | undefined> | undefined;
752
- onScrollToTop?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
753
- zoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
754
- endFillColor?: react_native.ColorValue | react_native_reanimated.SharedValue<react_native.ColorValue | undefined> | undefined;
755
- scrollPerfTag?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
756
- overScrollMode?: "always" | "never" | "auto" | react_native_reanimated.SharedValue<"always" | "never" | "auto" | undefined> | undefined;
757
- nestedScrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
758
- fadingEdgeLength?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
759
- persistentScrollbar?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
760
- } & {
761
- style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
762
- contentContainerStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
763
- indicatorStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<"default" | "black" | "white" | undefined>>;
764
- } & {
765
- layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
766
- entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
767
- exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
768
- } & {
769
- sharedTransitionTag?: string;
770
- sharedTransitionStyle?: react_native_reanimated.SharedTransition;
771
- } & {
772
- animatedProps?: Partial<{
773
- children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
774
- hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
775
- id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
776
- needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
777
- onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
778
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
779
- removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
780
- testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
781
- nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
782
- collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
783
- collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
784
- renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
785
- focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
786
- tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
787
- shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
788
- isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
789
- hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
790
- tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
791
- tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
792
- tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
793
- tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
794
- onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
795
- onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
796
- onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
797
- onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
798
- onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
799
- onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
800
- onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
801
- onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
802
- onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
803
- onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
804
- onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
805
- onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
806
- onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
807
- onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
808
- onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
809
- onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
810
- onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
811
- onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
812
- onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
813
- onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
814
- onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
815
- onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
816
- onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
817
- onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
818
- onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
819
- onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
820
- onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
821
- onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
822
- onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
823
- accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
824
- accessibilityActions?: readonly Readonly<{
825
- name: react_native.AccessibilityActionName | string;
826
- label?: string | undefined;
827
- }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
828
- name: react_native.AccessibilityActionName | string;
829
- label?: string | undefined;
830
- }>[] | undefined> | undefined;
831
- accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
832
- 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
833
- accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
834
- accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
835
- 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
836
- 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
837
- 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
838
- 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
839
- 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
840
- accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
841
- accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
842
- 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
843
- 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
844
- 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
845
- 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
846
- onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
847
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
848
- 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
849
- 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
850
- role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
851
- accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
852
- 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
853
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
854
- 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
855
- accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
856
- accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
857
- onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
858
- onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
859
- onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
860
- accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
861
- accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
862
- accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
863
- accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
864
- decelerationRate?: number | "normal" | "fast" | react_native_reanimated.SharedValue<number | "normal" | "fast" | undefined> | undefined;
865
- horizontal?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
866
- invertStickyHeaders?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
867
- keyboardDismissMode?: "none" | "interactive" | "on-drag" | react_native_reanimated.SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
868
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | react_native_reanimated.SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
869
- onContentSizeChange?: ((w: number, h: number) => void) | react_native_reanimated.SharedValue<((w: number, h: number) => void) | undefined> | undefined;
870
- onScroll?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
871
- onScrollBeginDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
872
- onScrollEndDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
873
- onMomentumScrollEnd?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
874
- onMomentumScrollBegin?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
875
- pagingEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
876
- scrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
877
- showsHorizontalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
878
- showsVerticalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
879
- stickyHeaderHiddenOnScroll?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
880
- refreshControl?: react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | react_native_reanimated.SharedValue<react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | undefined> | undefined;
881
- snapToInterval?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
882
- snapToOffsets?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
883
- snapToStart?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
884
- snapToEnd?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
885
- stickyHeaderIndices?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
886
- disableIntervalMomentum?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
887
- disableScrollViewPanResponder?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
888
- StickyHeaderComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | undefined> | undefined;
889
- alwaysBounceHorizontal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
890
- alwaysBounceVertical?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
891
- automaticallyAdjustContentInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
892
- automaticallyAdjustKeyboardInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
893
- automaticallyAdjustsScrollIndicatorInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
894
- bounces?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
895
- bouncesZoom?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
896
- canCancelContentTouches?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
897
- centerContent?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
898
- contentInset?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
899
- contentOffset?: react_native.PointProp | react_native_reanimated.SharedValue<react_native.PointProp | undefined> | undefined;
900
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | react_native_reanimated.SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
901
- directionalLockEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
902
- maintainVisibleContentPosition?: {
903
- autoscrollToTopThreshold?: number | null | undefined;
904
- minIndexForVisible: number;
905
- } | react_native_reanimated.SharedValue<{
906
- autoscrollToTopThreshold?: number | null | undefined;
907
- minIndexForVisible: number;
908
- } | null | undefined> | null | undefined;
909
- maximumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
910
- minimumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
911
- onScrollAnimationEnd?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
912
- pinchGestureEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
913
- scrollEventThrottle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
914
- scrollIndicatorInsets?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
915
- scrollToOverflowEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
916
- scrollsToTop?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
917
- snapToAlignment?: "center" | "end" | "start" | react_native_reanimated.SharedValue<"center" | "end" | "start" | undefined> | undefined;
918
- onScrollToTop?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
919
- zoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
920
- endFillColor?: react_native.ColorValue | react_native_reanimated.SharedValue<react_native.ColorValue | undefined> | undefined;
921
- scrollPerfTag?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
922
- overScrollMode?: "always" | "never" | "auto" | react_native_reanimated.SharedValue<"always" | "never" | "auto" | undefined> | undefined;
923
- nestedScrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
924
- fadingEdgeLength?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
925
- persistentScrollbar?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
926
- } & {
927
- style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
928
- contentContainerStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
929
- indicatorStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<"default" | "black" | "white" | undefined>>;
930
- } & {
931
- layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
932
- entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
933
- exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
934
- } & {
935
- sharedTransitionTag?: string;
936
- sharedTransitionStyle?: react_native_reanimated.SharedTransition;
937
- }> | undefined;
938
- } & react.RefAttributes<never>>>;
939
- FlatList: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
940
- children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
941
- hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
942
- id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
943
- needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
944
- onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
945
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
946
- removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
947
- testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
948
- nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
949
- collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
950
- collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
951
- renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
952
- focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
953
- tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
954
- shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
955
- isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
956
- hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
957
- tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
958
- tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
959
- tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
960
- tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
961
- onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
962
- onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
963
- onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
964
- onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
965
- onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
966
- onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
967
- onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
968
- onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
969
- onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
970
- onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
971
- onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
972
- onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
973
- onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
974
- onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
975
- onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
976
- onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
977
- onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
978
- onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
979
- onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
980
- onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
981
- onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
982
- onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
983
- onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
984
- onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
985
- onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
986
- onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
987
- onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
988
- onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
989
- onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
990
- accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
991
- accessibilityActions?: readonly Readonly<{
992
- name: react_native.AccessibilityActionName | string;
993
- label?: string | undefined;
994
- }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
995
- name: react_native.AccessibilityActionName | string;
996
- label?: string | undefined;
997
- }>[] | undefined> | undefined;
998
- accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
999
- 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1000
- accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
1001
- accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
1002
- 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1003
- 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
1004
- 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1005
- 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1006
- 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1007
- accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1008
- accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
1009
- 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1010
- 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1011
- 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1012
- 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1013
- onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
1014
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
1015
- 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1016
- 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1017
- role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
1018
- accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
1019
- 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1020
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
1021
- 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
1022
- accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1023
- accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1024
- onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1025
- onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1026
- onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1027
- accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1028
- accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1029
- accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1030
- accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1031
- data: ArrayLike<unknown> | react_native_reanimated.SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
1032
- decelerationRate?: number | "normal" | "fast" | react_native_reanimated.SharedValue<number | "normal" | "fast" | undefined> | undefined;
1033
- horizontal?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
1034
- invertStickyHeaders?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1035
- keyboardDismissMode?: "none" | "interactive" | "on-drag" | react_native_reanimated.SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
1036
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | react_native_reanimated.SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
1037
- onContentSizeChange?: ((w: number, h: number) => void) | react_native_reanimated.SharedValue<((w: number, h: number) => void) | undefined> | undefined;
1038
- onScroll?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1039
- onScrollBeginDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1040
- onScrollEndDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1041
- onMomentumScrollEnd?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1042
- onMomentumScrollBegin?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1043
- pagingEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1044
- scrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1045
- showsHorizontalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1046
- showsVerticalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1047
- stickyHeaderHiddenOnScroll?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1048
- refreshControl?: react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | react_native_reanimated.SharedValue<react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | undefined> | undefined;
1049
- snapToInterval?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1050
- snapToOffsets?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
1051
- snapToStart?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1052
- snapToEnd?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1053
- stickyHeaderIndices?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
1054
- disableIntervalMomentum?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1055
- disableScrollViewPanResponder?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1056
- StickyHeaderComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | undefined> | undefined;
1057
- alwaysBounceHorizontal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1058
- alwaysBounceVertical?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1059
- automaticallyAdjustContentInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1060
- automaticallyAdjustKeyboardInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1061
- automaticallyAdjustsScrollIndicatorInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1062
- bounces?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1063
- bouncesZoom?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1064
- canCancelContentTouches?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1065
- centerContent?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1066
- contentInset?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
1067
- contentOffset?: react_native.PointProp | react_native_reanimated.SharedValue<react_native.PointProp | undefined> | undefined;
1068
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | react_native_reanimated.SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
1069
- directionalLockEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1070
- maintainVisibleContentPosition?: {
1071
- autoscrollToTopThreshold?: number | null | undefined;
1072
- minIndexForVisible: number;
1073
- } | react_native_reanimated.SharedValue<{
1074
- autoscrollToTopThreshold?: number | null | undefined;
1075
- minIndexForVisible: number;
1076
- } | null | undefined> | null | undefined;
1077
- maximumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1078
- minimumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1079
- onScrollAnimationEnd?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1080
- pinchGestureEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1081
- scrollEventThrottle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1082
- scrollIndicatorInsets?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
1083
- scrollToOverflowEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1084
- scrollsToTop?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1085
- snapToAlignment?: "center" | "end" | "start" | react_native_reanimated.SharedValue<"center" | "end" | "start" | undefined> | undefined;
1086
- onScrollToTop?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1087
- zoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1088
- endFillColor?: react_native.ColorValue | react_native_reanimated.SharedValue<react_native.ColorValue | undefined> | undefined;
1089
- scrollPerfTag?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1090
- overScrollMode?: "always" | "never" | "auto" | react_native_reanimated.SharedValue<"always" | "never" | "auto" | undefined> | undefined;
1091
- nestedScrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1092
- fadingEdgeLength?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1093
- persistentScrollbar?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1094
- extraData?: any | undefined;
1095
- getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
1096
- length: number;
1097
- offset: number;
1098
- index: number;
1099
- }) | react_native_reanimated.SharedValue<((data: ArrayLike<unknown> | null | undefined, index: number) => {
1100
- length: number;
1101
- offset: number;
1102
- index: number;
1103
- }) | undefined> | undefined;
1104
- initialNumToRender?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1105
- initialScrollIndex?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
1106
- keyExtractor?: ((item: unknown, index: number) => string) | react_native_reanimated.SharedValue<((item: unknown, index: number) => string) | undefined> | undefined;
1107
- legacyImplementation?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1108
- numColumns?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1109
- onRefresh?: (() => void) | react_native_reanimated.SharedValue<(() => void) | null | undefined> | null | undefined;
1110
- onViewableItemsChanged?: ((info: {
1111
- viewableItems: react_native.ViewToken<unknown>[];
1112
- changed: react_native.ViewToken<unknown>[];
1113
- }) => void) | react_native_reanimated.SharedValue<((info: {
1114
- viewableItems: react_native.ViewToken<unknown>[];
1115
- changed: react_native.ViewToken<unknown>[];
1116
- }) => void) | null | undefined> | null | undefined;
1117
- refreshing?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
1118
- renderItem: react_native.ListRenderItem<unknown> | react_native_reanimated.SharedValue<react_native.ListRenderItem<unknown> | null | undefined> | null | undefined;
1119
- viewabilityConfig?: react_native.ViewabilityConfig | react_native_reanimated.SharedValue<react_native.ViewabilityConfig | undefined> | undefined;
1120
- ItemSeparatorComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | null | undefined> | null | undefined;
1121
- ListEmptyComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
1122
- ListFooterComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
1123
- ListHeaderComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
1124
- debug?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1125
- disableVirtualization?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1126
- getItem?: ((data: any, index: number) => unknown) | react_native_reanimated.SharedValue<((data: any, index: number) => unknown) | undefined> | undefined;
1127
- getItemCount?: ((data: any) => number) | react_native_reanimated.SharedValue<((data: any) => number) | undefined> | undefined;
1128
- inverted?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
1129
- maxToRenderPerBatch?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1130
- onEndReached?: ((info: {
1131
- distanceFromEnd: number;
1132
- }) => void) | react_native_reanimated.SharedValue<((info: {
1133
- distanceFromEnd: number;
1134
- }) => void) | null | undefined> | null | undefined;
1135
- onEndReachedThreshold?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
1136
- onScrollToIndexFailed?: ((info: {
1137
- index: number;
1138
- highestMeasuredFrameIndex: number;
1139
- averageItemLength: number;
1140
- }) => void) | react_native_reanimated.SharedValue<((info: {
1141
- index: number;
1142
- highestMeasuredFrameIndex: number;
1143
- averageItemLength: number;
1144
- }) => void) | undefined> | undefined;
1145
- onStartReached?: ((info: {
1146
- distanceFromStart: number;
1147
- }) => void) | react_native_reanimated.SharedValue<((info: {
1148
- distanceFromStart: number;
1149
- }) => void) | null | undefined> | null | undefined;
1150
- onStartReachedThreshold?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
1151
- progressViewOffset?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1152
- renderScrollComponent?: ((props: react_native.ScrollViewProps) => React.ReactElement<react_native.ScrollViewProps>) | react_native_reanimated.SharedValue<((props: react_native.ScrollViewProps) => React.ReactElement<react_native.ScrollViewProps>) | undefined> | undefined;
1153
- updateCellsBatchingPeriod?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1154
- viewabilityConfigCallbackPairs?: react_native.ViewabilityConfigCallbackPairs | react_native_reanimated.SharedValue<react_native.ViewabilityConfigCallbackPairs | undefined> | undefined;
1155
- windowSize?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1156
- CellRendererComponent?: react.ComponentType<react_native.CellRendererProps<unknown>> | react_native_reanimated.SharedValue<react.ComponentType<react_native.CellRendererProps<unknown>> | null | undefined> | null | undefined;
1157
- } & {
1158
- style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1159
- contentContainerStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1160
- indicatorStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<"default" | "black" | "white" | undefined>>;
1161
- columnWrapperStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1162
- ListFooterComponentStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1163
- ListHeaderComponentStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1164
- } & {
1165
- layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
1166
- entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
1167
- exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
1168
- } & {
1169
- sharedTransitionTag?: string;
1170
- sharedTransitionStyle?: react_native_reanimated.SharedTransition;
1171
- } & {
1172
- animatedProps?: Partial<{
1173
- children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
1174
- hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
1175
- id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1176
- needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1177
- onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
1178
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
1179
- removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1180
- testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1181
- nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1182
- collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1183
- collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1184
- renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1185
- focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1186
- tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
1187
- shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1188
- isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1189
- hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1190
- tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1191
- tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1192
- tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1193
- tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1194
- onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
1195
- onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
1196
- onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1197
- onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1198
- onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1199
- onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1200
- onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1201
- onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1202
- onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
1203
- onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1204
- onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
1205
- onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
1206
- onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1207
- onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1208
- onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1209
- onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1210
- onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1211
- onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1212
- onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1213
- onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1214
- onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1215
- onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1216
- onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1217
- onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1218
- onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1219
- onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1220
- onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1221
- onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1222
- onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1223
- accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1224
- accessibilityActions?: readonly Readonly<{
1225
- name: react_native.AccessibilityActionName | string;
1226
- label?: string | undefined;
1227
- }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
1228
- name: react_native.AccessibilityActionName | string;
1229
- label?: string | undefined;
1230
- }>[] | undefined> | undefined;
1231
- accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1232
- 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1233
- accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
1234
- accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
1235
- 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1236
- 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
1237
- 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1238
- 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1239
- 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1240
- accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1241
- accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
1242
- 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1243
- 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1244
- 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1245
- 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1246
- onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
1247
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
1248
- 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1249
- 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1250
- role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
1251
- accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
1252
- 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1253
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
1254
- 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
1255
- accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1256
- accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1257
- onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1258
- onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1259
- onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1260
- accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1261
- accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1262
- accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1263
- accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1264
- data: ArrayLike<unknown> | react_native_reanimated.SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
1265
- decelerationRate?: number | "normal" | "fast" | react_native_reanimated.SharedValue<number | "normal" | "fast" | undefined> | undefined;
1266
- horizontal?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
1267
- invertStickyHeaders?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1268
- keyboardDismissMode?: "none" | "interactive" | "on-drag" | react_native_reanimated.SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
1269
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | react_native_reanimated.SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
1270
- onContentSizeChange?: ((w: number, h: number) => void) | react_native_reanimated.SharedValue<((w: number, h: number) => void) | undefined> | undefined;
1271
- onScroll?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1272
- onScrollBeginDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1273
- onScrollEndDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1274
- onMomentumScrollEnd?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1275
- onMomentumScrollBegin?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1276
- pagingEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1277
- scrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1278
- showsHorizontalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1279
- showsVerticalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1280
- stickyHeaderHiddenOnScroll?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1281
- refreshControl?: react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | react_native_reanimated.SharedValue<react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | undefined> | undefined;
1282
- snapToInterval?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1283
- snapToOffsets?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
1284
- snapToStart?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1285
- snapToEnd?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1286
- stickyHeaderIndices?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
1287
- disableIntervalMomentum?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1288
- disableScrollViewPanResponder?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1289
- StickyHeaderComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | undefined> | undefined;
1290
- alwaysBounceHorizontal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1291
- alwaysBounceVertical?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1292
- automaticallyAdjustContentInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1293
- automaticallyAdjustKeyboardInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1294
- automaticallyAdjustsScrollIndicatorInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1295
- bounces?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1296
- bouncesZoom?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1297
- canCancelContentTouches?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1298
- centerContent?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1299
- contentInset?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
1300
- contentOffset?: react_native.PointProp | react_native_reanimated.SharedValue<react_native.PointProp | undefined> | undefined;
1301
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | react_native_reanimated.SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
1302
- directionalLockEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1303
- maintainVisibleContentPosition?: {
1304
- autoscrollToTopThreshold?: number | null | undefined;
1305
- minIndexForVisible: number;
1306
- } | react_native_reanimated.SharedValue<{
1307
- autoscrollToTopThreshold?: number | null | undefined;
1308
- minIndexForVisible: number;
1309
- } | null | undefined> | null | undefined;
1310
- maximumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1311
- minimumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1312
- onScrollAnimationEnd?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1313
- pinchGestureEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1314
- scrollEventThrottle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1315
- scrollIndicatorInsets?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
1316
- scrollToOverflowEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1317
- scrollsToTop?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1318
- snapToAlignment?: "center" | "end" | "start" | react_native_reanimated.SharedValue<"center" | "end" | "start" | undefined> | undefined;
1319
- onScrollToTop?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1320
- zoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1321
- endFillColor?: react_native.ColorValue | react_native_reanimated.SharedValue<react_native.ColorValue | undefined> | undefined;
1322
- scrollPerfTag?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1323
- overScrollMode?: "always" | "never" | "auto" | react_native_reanimated.SharedValue<"always" | "never" | "auto" | undefined> | undefined;
1324
- nestedScrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1325
- fadingEdgeLength?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1326
- persistentScrollbar?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1327
- extraData?: any | undefined;
1328
- getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
1329
- length: number;
1330
- offset: number;
1331
- index: number;
1332
- }) | react_native_reanimated.SharedValue<((data: ArrayLike<unknown> | null | undefined, index: number) => {
1333
- length: number;
1334
- offset: number;
1335
- index: number;
1336
- }) | undefined> | undefined;
1337
- initialNumToRender?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1338
- initialScrollIndex?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
1339
- keyExtractor?: ((item: unknown, index: number) => string) | react_native_reanimated.SharedValue<((item: unknown, index: number) => string) | undefined> | undefined;
1340
- legacyImplementation?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1341
- numColumns?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1342
- onRefresh?: (() => void) | react_native_reanimated.SharedValue<(() => void) | null | undefined> | null | undefined;
1343
- onViewableItemsChanged?: ((info: {
1344
- viewableItems: react_native.ViewToken<unknown>[];
1345
- changed: react_native.ViewToken<unknown>[];
1346
- }) => void) | react_native_reanimated.SharedValue<((info: {
1347
- viewableItems: react_native.ViewToken<unknown>[];
1348
- changed: react_native.ViewToken<unknown>[];
1349
- }) => void) | null | undefined> | null | undefined;
1350
- refreshing?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
1351
- renderItem: react_native.ListRenderItem<unknown> | react_native_reanimated.SharedValue<react_native.ListRenderItem<unknown> | null | undefined> | null | undefined;
1352
- viewabilityConfig?: react_native.ViewabilityConfig | react_native_reanimated.SharedValue<react_native.ViewabilityConfig | undefined> | undefined;
1353
- ItemSeparatorComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | null | undefined> | null | undefined;
1354
- ListEmptyComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
1355
- ListFooterComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
1356
- ListHeaderComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
1357
- debug?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1358
- disableVirtualization?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1359
- getItem?: ((data: any, index: number) => unknown) | react_native_reanimated.SharedValue<((data: any, index: number) => unknown) | undefined> | undefined;
1360
- getItemCount?: ((data: any) => number) | react_native_reanimated.SharedValue<((data: any) => number) | undefined> | undefined;
1361
- inverted?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
1362
- maxToRenderPerBatch?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1363
- onEndReached?: ((info: {
1364
- distanceFromEnd: number;
1365
- }) => void) | react_native_reanimated.SharedValue<((info: {
1366
- distanceFromEnd: number;
1367
- }) => void) | null | undefined> | null | undefined;
1368
- onEndReachedThreshold?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
1369
- onScrollToIndexFailed?: ((info: {
1370
- index: number;
1371
- highestMeasuredFrameIndex: number;
1372
- averageItemLength: number;
1373
- }) => void) | react_native_reanimated.SharedValue<((info: {
1374
- index: number;
1375
- highestMeasuredFrameIndex: number;
1376
- averageItemLength: number;
1377
- }) => void) | undefined> | undefined;
1378
- onStartReached?: ((info: {
1379
- distanceFromStart: number;
1380
- }) => void) | react_native_reanimated.SharedValue<((info: {
1381
- distanceFromStart: number;
1382
- }) => void) | null | undefined> | null | undefined;
1383
- onStartReachedThreshold?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
1384
- progressViewOffset?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1385
- renderScrollComponent?: ((props: react_native.ScrollViewProps) => React.ReactElement<react_native.ScrollViewProps>) | react_native_reanimated.SharedValue<((props: react_native.ScrollViewProps) => React.ReactElement<react_native.ScrollViewProps>) | undefined> | undefined;
1386
- updateCellsBatchingPeriod?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1387
- viewabilityConfigCallbackPairs?: react_native.ViewabilityConfigCallbackPairs | react_native_reanimated.SharedValue<react_native.ViewabilityConfigCallbackPairs | undefined> | undefined;
1388
- windowSize?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1389
- CellRendererComponent?: react.ComponentType<react_native.CellRendererProps<unknown>> | react_native_reanimated.SharedValue<react.ComponentType<react_native.CellRendererProps<unknown>> | null | undefined> | null | undefined;
1390
- } & {
1391
- style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1392
- contentContainerStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1393
- indicatorStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<"default" | "black" | "white" | undefined>>;
1394
- columnWrapperStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1395
- ListFooterComponentStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1396
- ListHeaderComponentStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1397
- } & {
1398
- layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
1399
- entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
1400
- exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
1401
- } & {
1402
- sharedTransitionTag?: string;
1403
- sharedTransitionStyle?: react_native_reanimated.SharedTransition;
1404
- }> | undefined;
1405
- } & react.RefAttributes<never>>>;
1406
- createConfig: ({ navigation: reactNavigation, route, ...config }: TransitionEventHandlersProps) => TransitionListeners;
1407
- createScreenConfig: (config?: Omit<TransitionEventHandlersProps, "navigation" | "route">) => {
1408
- listeners: (l: Any) => Partial<{
1409
- [x: string]: _react_navigation_core.EventListenerCallback<_react_navigation_core.EventMapBase & _react_navigation_core.EventMapCore<Readonly<{
1410
- key: string;
1411
- index: number;
1412
- routeNames: string[];
1413
- history?: unknown[];
1414
- routes: _react_navigation_routers.NavigationRoute<_react_navigation_routers.ParamListBase, string>[];
1415
- type: string;
1416
- stale: false;
1417
- }>>, string, boolean | undefined>;
1418
- focus: _react_navigation_core.EventListenerCallback<_react_navigation_core.EventMapBase & _react_navigation_core.EventMapCore<Readonly<{
1419
- key: string;
1420
- index: number;
1421
- routeNames: string[];
1422
- history?: unknown[];
1423
- routes: _react_navigation_routers.NavigationRoute<_react_navigation_routers.ParamListBase, string>[];
1424
- type: string;
1425
- stale: false;
1426
- }>>, "focus", unknown>;
1427
- blur: _react_navigation_core.EventListenerCallback<_react_navigation_core.EventMapBase & _react_navigation_core.EventMapCore<Readonly<{
1428
- key: string;
1429
- index: number;
1430
- routeNames: string[];
1431
- history?: unknown[];
1432
- routes: _react_navigation_routers.NavigationRoute<_react_navigation_routers.ParamListBase, string>[];
1433
- type: string;
1434
- stale: false;
1435
- }>>, "blur", unknown>;
1436
- state: _react_navigation_core.EventListenerCallback<_react_navigation_core.EventMapBase & _react_navigation_core.EventMapCore<Readonly<{
1437
- key: string;
1438
- index: number;
1439
- routeNames: string[];
1440
- history?: unknown[];
1441
- routes: _react_navigation_routers.NavigationRoute<_react_navigation_routers.ParamListBase, string>[];
1442
- type: string;
1443
- stale: false;
1444
- }>>, "state", unknown>;
1445
- beforeRemove: _react_navigation_core.EventListenerCallback<_react_navigation_core.EventMapBase & _react_navigation_core.EventMapCore<Readonly<{
1446
- key: string;
1447
- index: number;
1448
- routeNames: string[];
1449
- history?: unknown[];
1450
- routes: _react_navigation_routers.NavigationRoute<_react_navigation_routers.ParamListBase, string>[];
1451
- type: string;
1452
- stale: false;
1453
- }>>, "beforeRemove", true>;
1454
- }>;
1455
- };
1456
- defaultScreenOptions: () => {
1457
- readonly presentation: "containedTransparentModal";
1458
- readonly headerShown: false;
1459
- readonly animation: "none";
1460
- };
1461
- presets: typeof presets;
1462
- specs: typeof specs;
1463
- /**
1464
- * Create a transition aware component
1465
- */
1466
- createTransitionAwareComponent: typeof createTransitionAwareComponent;
1467
- /**
1468
- * Create a transition aware scrollable component
1469
- */
1470
- createTransitionAwareScrollable: typeof createTransitionAwareScrollable;
1471
- };
1472
-
1473
- export { _default as default, useScreenAnimation };