react-native-screen-transitions 2.4.2 → 3.0.0-beta.1

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