react-native-screen-transitions 3.9.0-alpha.2 → 3.9.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (421) hide show
  1. package/lib/commonjs/shared/components/boundary/components/boundary-target.js +14 -9
  2. package/lib/commonjs/shared/components/boundary/components/boundary-target.js.map +1 -1
  3. package/lib/commonjs/shared/components/boundary/create-boundary-component.js +66 -28
  4. package/lib/commonjs/shared/components/boundary/create-boundary-component.js.map +1 -1
  5. package/lib/commonjs/shared/components/boundary/hooks/{use-boundary-presence.js → lifecycles/use-boundary-presence.js} +8 -4
  6. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-boundary-presence.js.map +1 -0
  7. package/lib/commonjs/shared/components/boundary/hooks/{use-initial-destination-measurement.js → lifecycles/use-initial-destination-measurement.js} +27 -10
  8. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js.map +1 -0
  9. package/lib/commonjs/shared/components/boundary/hooks/{use-initial-source-measurement.js → lifecycles/use-initial-source-measurement.js} +5 -7
  10. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.js.map +1 -0
  11. package/lib/commonjs/shared/components/boundary/hooks/{use-refresh-boundary.js → lifecycles/use-refresh-boundary.js} +4 -4
  12. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.js.map +1 -0
  13. package/lib/commonjs/shared/components/boundary/hooks/use-boundary-measurement.js +14 -35
  14. package/lib/commonjs/shared/components/boundary/hooks/use-boundary-measurement.js.map +1 -1
  15. package/lib/commonjs/shared/components/boundary/hooks/use-measurer.js +5 -6
  16. package/lib/commonjs/shared/components/boundary/hooks/use-measurer.js.map +1 -1
  17. package/lib/commonjs/shared/components/boundary/index.js +26 -29
  18. package/lib/commonjs/shared/components/boundary/index.js.map +1 -1
  19. package/lib/commonjs/shared/components/boundary/portal/components/boundary-local-portal-host.js +58 -0
  20. package/lib/commonjs/shared/components/boundary/portal/components/boundary-local-portal-host.js.map +1 -0
  21. package/lib/commonjs/shared/components/boundary/portal/components/host.js +20 -4
  22. package/lib/commonjs/shared/components/boundary/portal/components/host.js.map +1 -1
  23. package/lib/commonjs/shared/components/boundary/portal/components/portal-boundary-host.js +53 -32
  24. package/lib/commonjs/shared/components/boundary/portal/components/portal-boundary-host.js.map +1 -1
  25. package/lib/commonjs/shared/components/boundary/portal/components/portal.js +206 -96
  26. package/lib/commonjs/shared/components/boundary/portal/components/portal.js.map +1 -1
  27. package/lib/commonjs/shared/components/boundary/portal/hooks/use-host-measurement.js +14 -2
  28. package/lib/commonjs/shared/components/boundary/portal/hooks/use-host-measurement.js.map +1 -1
  29. package/lib/commonjs/shared/components/boundary/portal/stores/host-registry.store.js +5 -44
  30. package/lib/commonjs/shared/components/boundary/portal/stores/host-registry.store.js.map +1 -1
  31. package/lib/commonjs/shared/components/boundary/portal/stores/portal-boundary-host.store.js +37 -5
  32. package/lib/commonjs/shared/components/boundary/portal/stores/portal-boundary-host.store.js.map +1 -1
  33. package/lib/commonjs/shared/components/boundary/portal/teleport.js +15 -2
  34. package/lib/commonjs/shared/components/boundary/portal/teleport.js.map +1 -1
  35. package/lib/commonjs/shared/components/boundary/portal/utils/has-local-slot.js +18 -0
  36. package/lib/commonjs/shared/components/boundary/portal/utils/has-local-slot.js.map +1 -0
  37. package/lib/commonjs/shared/components/boundary/portal/utils/naming.js +10 -3
  38. package/lib/commonjs/shared/components/boundary/portal/utils/naming.js.map +1 -1
  39. package/lib/commonjs/shared/components/boundary/portal/utils/offset-style.js +28 -49
  40. package/lib/commonjs/shared/components/boundary/portal/utils/offset-style.js.map +1 -1
  41. package/lib/commonjs/shared/components/boundary/portal/utils/ownership.js +254 -0
  42. package/lib/commonjs/shared/components/boundary/portal/utils/ownership.js.map +1 -0
  43. package/lib/commonjs/shared/components/boundary/portal/utils/resolve-portal.js +38 -0
  44. package/lib/commonjs/shared/components/boundary/portal/utils/resolve-portal.js.map +1 -0
  45. package/lib/commonjs/shared/components/boundary/portal/utils/shallow-equal.js +29 -0
  46. package/lib/commonjs/shared/components/boundary/portal/utils/shallow-equal.js.map +1 -0
  47. package/lib/commonjs/shared/components/boundary/portal/utils/teleport-control.js +10 -1
  48. package/lib/commonjs/shared/components/boundary/portal/utils/teleport-control.js.map +1 -1
  49. package/lib/commonjs/shared/components/boundary/portal/utils/visible-host.js +25 -0
  50. package/lib/commonjs/shared/components/boundary/portal/utils/visible-host.js.map +1 -0
  51. package/lib/commonjs/shared/components/boundary/providers/boundary-root.provider.js +6 -7
  52. package/lib/commonjs/shared/components/boundary/providers/boundary-root.provider.js.map +1 -1
  53. package/lib/commonjs/shared/components/boundary/utils/destination-signals.js +1 -22
  54. package/lib/commonjs/shared/components/boundary/utils/destination-signals.js.map +1 -1
  55. package/lib/commonjs/shared/components/boundary/utils/refresh-signals.js +0 -21
  56. package/lib/commonjs/shared/components/boundary/utils/refresh-signals.js.map +1 -1
  57. package/lib/commonjs/shared/components/boundary/utils/source-signals.js +4 -9
  58. package/lib/commonjs/shared/components/boundary/utils/source-signals.js.map +1 -1
  59. package/lib/commonjs/shared/index.js.map +1 -1
  60. package/lib/commonjs/shared/providers/helpers/measured-bounds-writes.js +6 -3
  61. package/lib/commonjs/shared/providers/helpers/measured-bounds-writes.js.map +1 -1
  62. package/lib/commonjs/shared/providers/screen/animation/helpers/derivations.js +1 -0
  63. package/lib/commonjs/shared/providers/screen/animation/helpers/derivations.js.map +1 -1
  64. package/lib/commonjs/shared/providers/screen/animation/helpers/pipeline.js +1 -0
  65. package/lib/commonjs/shared/providers/screen/animation/helpers/pipeline.js.map +1 -1
  66. package/lib/commonjs/shared/providers/screen/styles/helpers/compose-slot-style.js +95 -0
  67. package/lib/commonjs/shared/providers/screen/styles/helpers/compose-slot-style.js.map +1 -0
  68. package/lib/commonjs/shared/providers/screen/styles/helpers/normalize-slots.js +30 -9
  69. package/lib/commonjs/shared/providers/screen/styles/helpers/normalize-slots.js.map +1 -1
  70. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/index.js +9 -3
  71. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/index.js.map +1 -1
  72. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.js +2 -0
  73. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.js.map +1 -1
  74. package/lib/commonjs/shared/providers/screen/styles/hooks/slot-resolvers.js +96 -0
  75. package/lib/commonjs/shared/providers/screen/styles/hooks/slot-resolvers.js.map +1 -0
  76. package/lib/commonjs/shared/providers/screen/styles/hooks/use-interpolated-style-maps.js +16 -3
  77. package/lib/commonjs/shared/providers/screen/styles/hooks/use-interpolated-style-maps.js.map +1 -1
  78. package/lib/commonjs/shared/providers/screen/styles/index.js +16 -3
  79. package/lib/commonjs/shared/providers/screen/styles/index.js.map +1 -1
  80. package/lib/commonjs/shared/providers/screen/styles/slot.provider.js +22 -51
  81. package/lib/commonjs/shared/providers/screen/styles/slot.provider.js.map +1 -1
  82. package/lib/commonjs/shared/providers/screen/styles/stores/slot-references.store.js +53 -0
  83. package/lib/commonjs/shared/providers/screen/styles/stores/slot-references.store.js.map +1 -0
  84. package/lib/commonjs/shared/stores/bounds/helpers/link-pairs.helpers.js +22 -2
  85. package/lib/commonjs/shared/stores/bounds/helpers/link-pairs.helpers.js.map +1 -1
  86. package/lib/commonjs/shared/stores/bounds/internals/entries.js +11 -4
  87. package/lib/commonjs/shared/stores/bounds/internals/entries.js.map +1 -1
  88. package/lib/commonjs/shared/stores/bounds/internals/links.js +134 -51
  89. package/lib/commonjs/shared/stores/bounds/internals/links.js.map +1 -1
  90. package/lib/commonjs/shared/stores/bounds/internals/resolver.js +1 -3
  91. package/lib/commonjs/shared/stores/bounds/internals/resolver.js.map +1 -1
  92. package/lib/commonjs/shared/stores/system.store.js +5 -0
  93. package/lib/commonjs/shared/stores/system.store.js.map +1 -1
  94. package/lib/commonjs/shared/utils/bounds/helpers/styles/compute.js +10 -69
  95. package/lib/commonjs/shared/utils/bounds/helpers/styles/compute.js.map +1 -1
  96. package/lib/commonjs/shared/utils/bounds/helpers/styles/local-transform.js +59 -0
  97. package/lib/commonjs/shared/utils/bounds/helpers/styles/local-transform.js.map +1 -0
  98. package/lib/module/shared/components/boundary/components/boundary-target.js +12 -7
  99. package/lib/module/shared/components/boundary/components/boundary-target.js.map +1 -1
  100. package/lib/module/shared/components/boundary/create-boundary-component.js +67 -29
  101. package/lib/module/shared/components/boundary/create-boundary-component.js.map +1 -1
  102. package/lib/module/shared/components/boundary/hooks/{use-boundary-presence.js → lifecycles/use-boundary-presence.js} +8 -4
  103. package/lib/module/shared/components/boundary/hooks/lifecycles/use-boundary-presence.js.map +1 -0
  104. package/lib/module/shared/components/boundary/hooks/{use-initial-destination-measurement.js → lifecycles/use-initial-destination-measurement.js} +27 -10
  105. package/lib/module/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js.map +1 -0
  106. package/lib/module/shared/components/boundary/hooks/{use-initial-source-measurement.js → lifecycles/use-initial-source-measurement.js} +5 -7
  107. package/lib/module/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.js.map +1 -0
  108. package/lib/module/shared/components/boundary/hooks/{use-refresh-boundary.js → lifecycles/use-refresh-boundary.js} +4 -4
  109. package/lib/module/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.js.map +1 -0
  110. package/lib/module/shared/components/boundary/hooks/use-boundary-measurement.js +15 -36
  111. package/lib/module/shared/components/boundary/hooks/use-boundary-measurement.js.map +1 -1
  112. package/lib/module/shared/components/boundary/hooks/use-measurer.js +5 -6
  113. package/lib/module/shared/components/boundary/hooks/use-measurer.js.map +1 -1
  114. package/lib/module/shared/components/boundary/index.js +26 -29
  115. package/lib/module/shared/components/boundary/index.js.map +1 -1
  116. package/lib/module/shared/components/boundary/portal/components/boundary-local-portal-host.js +53 -0
  117. package/lib/module/shared/components/boundary/portal/components/boundary-local-portal-host.js.map +1 -0
  118. package/lib/module/shared/components/boundary/portal/components/host.js +21 -5
  119. package/lib/module/shared/components/boundary/portal/components/host.js.map +1 -1
  120. package/lib/module/shared/components/boundary/portal/components/portal-boundary-host.js +53 -32
  121. package/lib/module/shared/components/boundary/portal/components/portal-boundary-host.js.map +1 -1
  122. package/lib/module/shared/components/boundary/portal/components/portal.js +212 -102
  123. package/lib/module/shared/components/boundary/portal/components/portal.js.map +1 -1
  124. package/lib/module/shared/components/boundary/portal/hooks/use-host-measurement.js +15 -3
  125. package/lib/module/shared/components/boundary/portal/hooks/use-host-measurement.js.map +1 -1
  126. package/lib/module/shared/components/boundary/portal/stores/host-registry.store.js +4 -41
  127. package/lib/module/shared/components/boundary/portal/stores/host-registry.store.js.map +1 -1
  128. package/lib/module/shared/components/boundary/portal/stores/portal-boundary-host.store.js +35 -4
  129. package/lib/module/shared/components/boundary/portal/stores/portal-boundary-host.store.js.map +1 -1
  130. package/lib/module/shared/components/boundary/portal/teleport.js +16 -2
  131. package/lib/module/shared/components/boundary/portal/teleport.js.map +1 -1
  132. package/lib/module/shared/components/boundary/portal/utils/has-local-slot.js +13 -0
  133. package/lib/module/shared/components/boundary/portal/utils/has-local-slot.js.map +1 -0
  134. package/lib/module/shared/components/boundary/portal/utils/naming.js +8 -2
  135. package/lib/module/shared/components/boundary/portal/utils/naming.js.map +1 -1
  136. package/lib/module/shared/components/boundary/portal/utils/offset-style.js +29 -49
  137. package/lib/module/shared/components/boundary/portal/utils/offset-style.js.map +1 -1
  138. package/lib/module/shared/components/boundary/portal/utils/ownership.js +246 -0
  139. package/lib/module/shared/components/boundary/portal/utils/ownership.js.map +1 -0
  140. package/lib/module/shared/components/boundary/portal/utils/resolve-portal.js +33 -0
  141. package/lib/module/shared/components/boundary/portal/utils/resolve-portal.js.map +1 -0
  142. package/lib/module/shared/components/boundary/portal/utils/shallow-equal.js +24 -0
  143. package/lib/module/shared/components/boundary/portal/utils/shallow-equal.js.map +1 -0
  144. package/lib/module/shared/components/boundary/portal/utils/teleport-control.js +8 -0
  145. package/lib/module/shared/components/boundary/portal/utils/teleport-control.js.map +1 -1
  146. package/lib/module/shared/components/boundary/portal/utils/visible-host.js +20 -0
  147. package/lib/module/shared/components/boundary/portal/utils/visible-host.js.map +1 -0
  148. package/lib/module/shared/components/boundary/providers/boundary-root.provider.js +6 -7
  149. package/lib/module/shared/components/boundary/providers/boundary-root.provider.js.map +1 -1
  150. package/lib/module/shared/components/boundary/utils/destination-signals.js +2 -23
  151. package/lib/module/shared/components/boundary/utils/destination-signals.js.map +1 -1
  152. package/lib/module/shared/components/boundary/utils/refresh-signals.js +0 -21
  153. package/lib/module/shared/components/boundary/utils/refresh-signals.js.map +1 -1
  154. package/lib/module/shared/components/boundary/utils/source-signals.js +4 -9
  155. package/lib/module/shared/components/boundary/utils/source-signals.js.map +1 -1
  156. package/lib/module/shared/index.js.map +1 -1
  157. package/lib/module/shared/providers/helpers/measured-bounds-writes.js +6 -3
  158. package/lib/module/shared/providers/helpers/measured-bounds-writes.js.map +1 -1
  159. package/lib/module/shared/providers/screen/animation/helpers/derivations.js +1 -0
  160. package/lib/module/shared/providers/screen/animation/helpers/derivations.js.map +1 -1
  161. package/lib/module/shared/providers/screen/animation/helpers/pipeline.js +1 -0
  162. package/lib/module/shared/providers/screen/animation/helpers/pipeline.js.map +1 -1
  163. package/lib/module/shared/providers/screen/styles/helpers/compose-slot-style.js +89 -0
  164. package/lib/module/shared/providers/screen/styles/helpers/compose-slot-style.js.map +1 -0
  165. package/lib/module/shared/providers/screen/styles/helpers/normalize-slots.js +30 -9
  166. package/lib/module/shared/providers/screen/styles/helpers/normalize-slots.js.map +1 -1
  167. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/index.js +9 -3
  168. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/index.js.map +1 -1
  169. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.js +2 -0
  170. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.js.map +1 -1
  171. package/lib/module/shared/providers/screen/styles/hooks/slot-resolvers.js +87 -0
  172. package/lib/module/shared/providers/screen/styles/hooks/slot-resolvers.js.map +1 -0
  173. package/lib/module/shared/providers/screen/styles/hooks/use-interpolated-style-maps.js +16 -3
  174. package/lib/module/shared/providers/screen/styles/hooks/use-interpolated-style-maps.js.map +1 -1
  175. package/lib/module/shared/providers/screen/styles/index.js +2 -1
  176. package/lib/module/shared/providers/screen/styles/index.js.map +1 -1
  177. package/lib/module/shared/providers/screen/styles/slot.provider.js +22 -47
  178. package/lib/module/shared/providers/screen/styles/slot.provider.js.map +1 -1
  179. package/lib/module/shared/providers/screen/styles/stores/slot-references.store.js +47 -0
  180. package/lib/module/shared/providers/screen/styles/stores/slot-references.store.js.map +1 -0
  181. package/lib/module/shared/stores/bounds/helpers/link-pairs.helpers.js +19 -1
  182. package/lib/module/shared/stores/bounds/helpers/link-pairs.helpers.js.map +1 -1
  183. package/lib/module/shared/stores/bounds/internals/entries.js +11 -4
  184. package/lib/module/shared/stores/bounds/internals/entries.js.map +1 -1
  185. package/lib/module/shared/stores/bounds/internals/links.js +135 -53
  186. package/lib/module/shared/stores/bounds/internals/links.js.map +1 -1
  187. package/lib/module/shared/stores/bounds/internals/resolver.js +1 -3
  188. package/lib/module/shared/stores/bounds/internals/resolver.js.map +1 -1
  189. package/lib/module/shared/stores/system.store.js +5 -0
  190. package/lib/module/shared/stores/system.store.js.map +1 -1
  191. package/lib/module/shared/types/animation.types.js.map +1 -1
  192. package/lib/module/shared/utils/bounds/helpers/styles/compute.js +10 -69
  193. package/lib/module/shared/utils/bounds/helpers/styles/compute.js.map +1 -1
  194. package/lib/module/shared/utils/bounds/helpers/styles/local-transform.js +52 -0
  195. package/lib/module/shared/utils/bounds/helpers/styles/local-transform.js.map +1 -0
  196. package/lib/typescript/blank-stack/navigators/create-blank-stack-navigator.d.ts +1 -2
  197. package/lib/typescript/blank-stack/navigators/create-blank-stack-navigator.d.ts.map +1 -1
  198. package/lib/typescript/component-stack/components/component-screen.d.ts +1 -1
  199. package/lib/typescript/component-stack/components/component-screen.d.ts.map +1 -1
  200. package/lib/typescript/component-stack/navigators/create-component-stack-navigator.d.ts +1 -2
  201. package/lib/typescript/component-stack/navigators/create-component-stack-navigator.d.ts.map +1 -1
  202. package/lib/typescript/native-stack/navigators/createNativeStackNavigator.d.ts +1 -1
  203. package/lib/typescript/native-stack/navigators/createNativeStackNavigator.d.ts.map +1 -1
  204. package/lib/typescript/native-stack/views/NativeStackView.d.ts +1 -2
  205. package/lib/typescript/native-stack/views/NativeStackView.d.ts.map +1 -1
  206. package/lib/typescript/native-stack/views/useHeaderConfigProps.d.ts +2 -2
  207. package/lib/typescript/shared/adapters/with-screen-transitions/context.d.ts +1 -1
  208. package/lib/typescript/shared/adapters/with-screen-transitions/context.d.ts.map +1 -1
  209. package/lib/typescript/shared/adapters/with-screen-transitions/stack-layout.d.ts +1 -1
  210. package/lib/typescript/shared/adapters/with-screen-transitions/stack-layout.d.ts.map +1 -1
  211. package/lib/typescript/shared/components/activity/variants/activity-container.d.ts +1 -1
  212. package/lib/typescript/shared/components/activity/variants/activity-container.d.ts.map +1 -1
  213. package/lib/typescript/shared/components/activity/variants/activity-screen.d.ts +1 -1
  214. package/lib/typescript/shared/components/activity/variants/activity-screen.d.ts.map +1 -1
  215. package/lib/typescript/shared/components/boundary/components/boundary-target.d.ts +1 -1
  216. package/lib/typescript/shared/components/boundary/components/boundary-target.d.ts.map +1 -1
  217. package/lib/typescript/shared/components/boundary/create-boundary-component.d.ts +0 -1
  218. package/lib/typescript/shared/components/boundary/create-boundary-component.d.ts.map +1 -1
  219. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-boundary-presence.d.ts +11 -0
  220. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-boundary-presence.d.ts.map +1 -0
  221. package/lib/typescript/shared/components/boundary/hooks/{use-initial-destination-measurement.d.ts → lifecycles/use-initial-destination-measurement.d.ts} +2 -2
  222. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.d.ts.map +1 -0
  223. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.d.ts +8 -0
  224. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.d.ts.map +1 -0
  225. package/lib/typescript/shared/components/boundary/hooks/{use-refresh-boundary.d.ts → lifecycles/use-refresh-boundary.d.ts} +2 -2
  226. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.d.ts.map +1 -0
  227. package/lib/typescript/shared/components/boundary/hooks/use-boundary-measurement.d.ts +5 -9
  228. package/lib/typescript/shared/components/boundary/hooks/use-boundary-measurement.d.ts.map +1 -1
  229. package/lib/typescript/shared/components/boundary/hooks/use-measurer.d.ts +4 -3
  230. package/lib/typescript/shared/components/boundary/hooks/use-measurer.d.ts.map +1 -1
  231. package/lib/typescript/shared/components/boundary/index.d.ts +35 -24
  232. package/lib/typescript/shared/components/boundary/index.d.ts.map +1 -1
  233. package/lib/typescript/shared/components/boundary/portal/components/boundary-local-portal-host.d.ts +8 -0
  234. package/lib/typescript/shared/components/boundary/portal/components/boundary-local-portal-host.d.ts.map +1 -0
  235. package/lib/typescript/shared/components/boundary/portal/components/host.d.ts +2 -2
  236. package/lib/typescript/shared/components/boundary/portal/components/host.d.ts.map +1 -1
  237. package/lib/typescript/shared/components/boundary/portal/components/portal-boundary-host.d.ts +2 -2
  238. package/lib/typescript/shared/components/boundary/portal/components/portal-boundary-host.d.ts.map +1 -1
  239. package/lib/typescript/shared/components/boundary/portal/components/portal-provider.d.ts +1 -1
  240. package/lib/typescript/shared/components/boundary/portal/components/portal-provider.d.ts.map +1 -1
  241. package/lib/typescript/shared/components/boundary/portal/components/portal.d.ts +4 -3
  242. package/lib/typescript/shared/components/boundary/portal/components/portal.d.ts.map +1 -1
  243. package/lib/typescript/shared/components/boundary/portal/hooks/use-host-measurement.d.ts.map +1 -1
  244. package/lib/typescript/shared/components/boundary/portal/stores/host-registry.store.d.ts +0 -7
  245. package/lib/typescript/shared/components/boundary/portal/stores/host-registry.store.d.ts.map +1 -1
  246. package/lib/typescript/shared/components/boundary/portal/stores/portal-boundary-host.store.d.ts +16 -1
  247. package/lib/typescript/shared/components/boundary/portal/stores/portal-boundary-host.store.d.ts.map +1 -1
  248. package/lib/typescript/shared/components/boundary/portal/teleport.d.ts +1 -1
  249. package/lib/typescript/shared/components/boundary/portal/teleport.d.ts.map +1 -1
  250. package/lib/typescript/shared/components/boundary/portal/utils/has-local-slot.d.ts +3 -0
  251. package/lib/typescript/shared/components/boundary/portal/utils/has-local-slot.d.ts.map +1 -0
  252. package/lib/typescript/shared/components/boundary/portal/utils/naming.d.ts +2 -1
  253. package/lib/typescript/shared/components/boundary/portal/utils/naming.d.ts.map +1 -1
  254. package/lib/typescript/shared/components/boundary/portal/utils/offset-style.d.ts +16 -32
  255. package/lib/typescript/shared/components/boundary/portal/utils/offset-style.d.ts.map +1 -1
  256. package/lib/typescript/shared/components/boundary/portal/utils/ownership.d.ts +35 -0
  257. package/lib/typescript/shared/components/boundary/portal/utils/ownership.d.ts.map +1 -0
  258. package/lib/typescript/shared/components/boundary/portal/utils/resolve-portal.d.ts +12 -0
  259. package/lib/typescript/shared/components/boundary/portal/utils/resolve-portal.d.ts.map +1 -0
  260. package/lib/typescript/shared/components/boundary/portal/utils/shallow-equal.d.ts +8 -0
  261. package/lib/typescript/shared/components/boundary/portal/utils/shallow-equal.d.ts.map +1 -0
  262. package/lib/typescript/shared/components/boundary/portal/utils/teleport-control.d.ts +4 -0
  263. package/lib/typescript/shared/components/boundary/portal/utils/teleport-control.d.ts.map +1 -1
  264. package/lib/typescript/shared/components/boundary/portal/utils/visible-host.d.ts +8 -0
  265. package/lib/typescript/shared/components/boundary/portal/utils/visible-host.d.ts.map +1 -0
  266. package/lib/typescript/shared/components/boundary/providers/boundary-root.provider.d.ts +7 -12
  267. package/lib/typescript/shared/components/boundary/providers/boundary-root.provider.d.ts.map +1 -1
  268. package/lib/typescript/shared/components/boundary/types.d.ts +9 -36
  269. package/lib/typescript/shared/components/boundary/types.d.ts.map +1 -1
  270. package/lib/typescript/shared/components/boundary/utils/destination-signals.d.ts.map +1 -1
  271. package/lib/typescript/shared/components/boundary/utils/refresh-signals.d.ts.map +1 -1
  272. package/lib/typescript/shared/components/boundary/utils/source-signals.d.ts +0 -1
  273. package/lib/typescript/shared/components/boundary/utils/source-signals.d.ts.map +1 -1
  274. package/lib/typescript/shared/components/create-transition-aware-component.d.ts +6 -5
  275. package/lib/typescript/shared/components/create-transition-aware-component.d.ts.map +1 -1
  276. package/lib/typescript/shared/components/masked-view.d.ts +1 -1
  277. package/lib/typescript/shared/components/masked-view.d.ts.map +1 -1
  278. package/lib/typescript/shared/components/overlay/variations/float-overlay.d.ts +1 -1
  279. package/lib/typescript/shared/components/overlay/variations/float-overlay.d.ts.map +1 -1
  280. package/lib/typescript/shared/components/overlay/variations/overlay-host.d.ts +1 -1
  281. package/lib/typescript/shared/components/overlay/variations/overlay-host.d.ts.map +1 -1
  282. package/lib/typescript/shared/components/scene-view.d.ts +1 -1
  283. package/lib/typescript/shared/components/scene-view.d.ts.map +1 -1
  284. package/lib/typescript/shared/components/screen-container/index.d.ts +1 -1
  285. package/lib/typescript/shared/components/screen-container/index.d.ts.map +1 -1
  286. package/lib/typescript/shared/components/screen-container/layers/backdrop.d.ts +1 -1
  287. package/lib/typescript/shared/components/screen-container/layers/backdrop.d.ts.map +1 -1
  288. package/lib/typescript/shared/components/screen-container/layers/content.d.ts +1 -1
  289. package/lib/typescript/shared/components/screen-container/layers/content.d.ts.map +1 -1
  290. package/lib/typescript/shared/components/screen-container/layers/maybe-masked-navigation-container.d.ts +1 -1
  291. package/lib/typescript/shared/components/screen-container/layers/maybe-masked-navigation-container.d.ts.map +1 -1
  292. package/lib/typescript/shared/components/screen-container/layers/surface-container.d.ts +1 -1
  293. package/lib/typescript/shared/components/screen-container/layers/surface-container.d.ts.map +1 -1
  294. package/lib/typescript/shared/hooks/navigation/use-stack.d.ts +1 -1
  295. package/lib/typescript/shared/hooks/navigation/use-stack.d.ts.map +1 -1
  296. package/lib/typescript/shared/index.d.ts +711 -667
  297. package/lib/typescript/shared/index.d.ts.map +1 -1
  298. package/lib/typescript/shared/providers/helpers/measured-bounds-writes.d.ts +3 -3
  299. package/lib/typescript/shared/providers/helpers/measured-bounds-writes.d.ts.map +1 -1
  300. package/lib/typescript/shared/providers/screen/animation/helpers/derivations.d.ts +1 -0
  301. package/lib/typescript/shared/providers/screen/animation/helpers/derivations.d.ts.map +1 -1
  302. package/lib/typescript/shared/providers/screen/animation/helpers/pipeline.d.ts.map +1 -1
  303. package/lib/typescript/shared/providers/screen/descriptors/descriptors.provider.d.ts +1 -1
  304. package/lib/typescript/shared/providers/screen/descriptors/descriptors.provider.d.ts.map +1 -1
  305. package/lib/typescript/shared/providers/screen/screen-composer.d.ts +1 -1
  306. package/lib/typescript/shared/providers/screen/screen-composer.d.ts.map +1 -1
  307. package/lib/typescript/shared/providers/screen/styles/components/floating-overlay-layer.d.ts +1 -1
  308. package/lib/typescript/shared/providers/screen/styles/components/floating-overlay-layer.d.ts.map +1 -1
  309. package/lib/typescript/shared/providers/screen/styles/helpers/compose-slot-style.d.ts +4 -0
  310. package/lib/typescript/shared/providers/screen/styles/helpers/compose-slot-style.d.ts.map +1 -0
  311. package/lib/typescript/shared/providers/screen/styles/helpers/normalize-slots.d.ts.map +1 -1
  312. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/index.d.ts.map +1 -1
  313. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.d.ts +2 -1
  314. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.d.ts.map +1 -1
  315. package/lib/typescript/shared/providers/screen/styles/hooks/slot-resolvers.d.ts +11 -0
  316. package/lib/typescript/shared/providers/screen/styles/hooks/slot-resolvers.d.ts.map +1 -0
  317. package/lib/typescript/shared/providers/screen/styles/hooks/use-interpolated-style-maps.d.ts +4 -1
  318. package/lib/typescript/shared/providers/screen/styles/hooks/use-interpolated-style-maps.d.ts.map +1 -1
  319. package/lib/typescript/shared/providers/screen/styles/hooks/use-maybe-block-visibility.d.ts +2 -2
  320. package/lib/typescript/shared/providers/screen/styles/index.d.ts +2 -1
  321. package/lib/typescript/shared/providers/screen/styles/index.d.ts.map +1 -1
  322. package/lib/typescript/shared/providers/screen/styles/slot.provider.d.ts +5 -10
  323. package/lib/typescript/shared/providers/screen/styles/slot.provider.d.ts.map +1 -1
  324. package/lib/typescript/shared/providers/screen/styles/stores/slot-references.store.d.ts +6 -0
  325. package/lib/typescript/shared/providers/screen/styles/stores/slot-references.store.d.ts.map +1 -0
  326. package/lib/typescript/shared/stores/bounds/helpers/link-pairs.helpers.d.ts +2 -0
  327. package/lib/typescript/shared/stores/bounds/helpers/link-pairs.helpers.d.ts.map +1 -1
  328. package/lib/typescript/shared/stores/bounds/internals/entries.d.ts.map +1 -1
  329. package/lib/typescript/shared/stores/bounds/internals/links.d.ts +4 -3
  330. package/lib/typescript/shared/stores/bounds/internals/links.d.ts.map +1 -1
  331. package/lib/typescript/shared/stores/bounds/internals/resolver.d.ts.map +1 -1
  332. package/lib/typescript/shared/stores/bounds/types.d.ts +9 -20
  333. package/lib/typescript/shared/stores/bounds/types.d.ts.map +1 -1
  334. package/lib/typescript/shared/stores/system.store.d.ts +1 -0
  335. package/lib/typescript/shared/stores/system.store.d.ts.map +1 -1
  336. package/lib/typescript/shared/types/animation.types.d.ts +7 -1
  337. package/lib/typescript/shared/types/animation.types.d.ts.map +1 -1
  338. package/lib/typescript/shared/utils/bounds/helpers/styles/compute.d.ts.map +1 -1
  339. package/lib/typescript/shared/utils/bounds/helpers/styles/local-transform.d.ts +6 -0
  340. package/lib/typescript/shared/utils/bounds/helpers/styles/local-transform.d.ts.map +1 -0
  341. package/package.json +1 -1
  342. package/src/shared/components/boundary/components/boundary-target.tsx +21 -7
  343. package/src/shared/components/boundary/create-boundary-component.tsx +92 -28
  344. package/src/shared/components/boundary/hooks/{use-boundary-presence.ts → lifecycles/use-boundary-presence.ts} +16 -5
  345. package/src/shared/components/boundary/hooks/{use-initial-destination-measurement.ts → lifecycles/use-initial-destination-measurement.ts} +40 -13
  346. package/src/shared/components/boundary/hooks/{use-initial-source-measurement.ts → lifecycles/use-initial-source-measurement.ts} +7 -9
  347. package/src/shared/components/boundary/hooks/{use-refresh-boundary.ts → lifecycles/use-refresh-boundary.ts} +6 -6
  348. package/src/shared/components/boundary/hooks/use-boundary-measurement.ts +15 -45
  349. package/src/shared/components/boundary/hooks/use-measurer.ts +9 -14
  350. package/src/shared/components/boundary/index.tsx +55 -29
  351. package/src/shared/components/boundary/portal/components/boundary-local-portal-host.tsx +66 -0
  352. package/src/shared/components/boundary/portal/components/host.tsx +20 -5
  353. package/src/shared/components/boundary/portal/components/portal-boundary-host.tsx +67 -52
  354. package/src/shared/components/boundary/portal/components/portal.tsx +280 -119
  355. package/src/shared/components/boundary/portal/hooks/use-host-measurement.ts +23 -2
  356. package/src/shared/components/boundary/portal/stores/host-registry.store.ts +4 -51
  357. package/src/shared/components/boundary/portal/stores/portal-boundary-host.store.ts +59 -6
  358. package/src/shared/components/boundary/portal/teleport.ts +28 -3
  359. package/src/shared/components/boundary/portal/utils/has-local-slot.ts +16 -0
  360. package/src/shared/components/boundary/portal/utils/naming.ts +11 -1
  361. package/src/shared/components/boundary/portal/utils/offset-style.ts +37 -139
  362. package/src/shared/components/boundary/portal/utils/ownership.ts +371 -0
  363. package/src/shared/components/boundary/portal/utils/resolve-portal.ts +50 -0
  364. package/src/shared/components/boundary/portal/utils/shallow-equal.ts +25 -0
  365. package/src/shared/components/boundary/portal/utils/teleport-control.ts +12 -0
  366. package/src/shared/components/boundary/portal/utils/visible-host.ts +24 -0
  367. package/src/shared/components/boundary/providers/boundary-root.provider.tsx +9 -18
  368. package/src/shared/components/boundary/types.ts +9 -39
  369. package/src/shared/components/boundary/utils/destination-signals.ts +1 -32
  370. package/src/shared/components/boundary/utils/refresh-signals.ts +0 -41
  371. package/src/shared/components/boundary/utils/source-signals.ts +5 -17
  372. package/src/shared/index.ts +0 -5
  373. package/src/shared/providers/helpers/measured-bounds-writes.ts +6 -11
  374. package/src/shared/providers/screen/animation/helpers/derivations.ts +3 -0
  375. package/src/shared/providers/screen/animation/helpers/pipeline.ts +1 -0
  376. package/src/shared/providers/screen/styles/helpers/compose-slot-style.ts +129 -0
  377. package/src/shared/providers/screen/styles/helpers/normalize-slots.ts +45 -8
  378. package/src/shared/providers/screen/styles/helpers/resolve-slot-styles/index.ts +14 -2
  379. package/src/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.ts +3 -0
  380. package/src/shared/providers/screen/styles/hooks/slot-resolvers.tsx +111 -0
  381. package/src/shared/providers/screen/styles/hooks/use-interpolated-style-maps.tsx +21 -3
  382. package/src/shared/providers/screen/styles/index.tsx +8 -3
  383. package/src/shared/providers/screen/styles/slot.provider.tsx +36 -54
  384. package/src/shared/providers/screen/styles/stores/slot-references.store.ts +71 -0
  385. package/src/shared/stores/bounds/helpers/link-pairs.helpers.ts +24 -1
  386. package/src/shared/stores/bounds/internals/entries.ts +13 -5
  387. package/src/shared/stores/bounds/internals/links.ts +167 -85
  388. package/src/shared/stores/bounds/internals/resolver.ts +0 -2
  389. package/src/shared/stores/bounds/types.ts +10 -22
  390. package/src/shared/stores/system.store.ts +6 -0
  391. package/src/shared/types/animation.types.ts +8 -1
  392. package/src/shared/utils/bounds/helpers/styles/compute.ts +22 -124
  393. package/src/shared/utils/bounds/helpers/styles/local-transform.ts +86 -0
  394. package/lib/commonjs/shared/components/boundary/hooks/use-boundary-presence.js.map +0 -1
  395. package/lib/commonjs/shared/components/boundary/hooks/use-initial-destination-measurement.js.map +0 -1
  396. package/lib/commonjs/shared/components/boundary/hooks/use-initial-source-measurement.js.map +0 -1
  397. package/lib/commonjs/shared/components/boundary/hooks/use-refresh-boundary.js.map +0 -1
  398. package/lib/commonjs/shared/components/boundary/portal/resolve-portal.js +0 -36
  399. package/lib/commonjs/shared/components/boundary/portal/resolve-portal.js.map +0 -1
  400. package/lib/commonjs/shared/components/boundary/portal/utils/attachment.js +0 -40
  401. package/lib/commonjs/shared/components/boundary/portal/utils/attachment.js.map +0 -1
  402. package/lib/module/shared/components/boundary/hooks/use-boundary-presence.js.map +0 -1
  403. package/lib/module/shared/components/boundary/hooks/use-initial-destination-measurement.js.map +0 -1
  404. package/lib/module/shared/components/boundary/hooks/use-initial-source-measurement.js.map +0 -1
  405. package/lib/module/shared/components/boundary/hooks/use-refresh-boundary.js.map +0 -1
  406. package/lib/module/shared/components/boundary/portal/resolve-portal.js +0 -31
  407. package/lib/module/shared/components/boundary/portal/resolve-portal.js.map +0 -1
  408. package/lib/module/shared/components/boundary/portal/utils/attachment.js +0 -35
  409. package/lib/module/shared/components/boundary/portal/utils/attachment.js.map +0 -1
  410. package/lib/typescript/shared/components/boundary/hooks/use-boundary-presence.d.ts +0 -9
  411. package/lib/typescript/shared/components/boundary/hooks/use-boundary-presence.d.ts.map +0 -1
  412. package/lib/typescript/shared/components/boundary/hooks/use-initial-destination-measurement.d.ts.map +0 -1
  413. package/lib/typescript/shared/components/boundary/hooks/use-initial-source-measurement.d.ts +0 -9
  414. package/lib/typescript/shared/components/boundary/hooks/use-initial-source-measurement.d.ts.map +0 -1
  415. package/lib/typescript/shared/components/boundary/hooks/use-refresh-boundary.d.ts.map +0 -1
  416. package/lib/typescript/shared/components/boundary/portal/resolve-portal.d.ts +0 -14
  417. package/lib/typescript/shared/components/boundary/portal/resolve-portal.d.ts.map +0 -1
  418. package/lib/typescript/shared/components/boundary/portal/utils/attachment.d.ts +0 -21
  419. package/lib/typescript/shared/components/boundary/portal/utils/attachment.d.ts.map +0 -1
  420. package/src/shared/components/boundary/portal/resolve-portal.ts +0 -40
  421. package/src/shared/components/boundary/portal/utils/attachment.ts +0 -48
@@ -7,14 +7,7 @@ declare const _default: {
7
7
  createTransitionAwareComponent: typeof createTransitionAwareComponent;
8
8
  createBoundaryComponent: typeof createBoundaryComponent;
9
9
  withScreenTransitions: typeof withScreenTransitions;
10
- Boundary: {
11
- View: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "id"> & import("./components/boundary/types").BoundaryOwnProps & import("react").RefAttributes<never>>>;
12
- Trigger: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("react-native").PressableProps & import("react").RefAttributes<View>, "id"> & import("./components/boundary/types").BoundaryOwnProps & import("react").RefAttributes<never>>>;
13
- Target: import("react").MemoExoticComponent<(props: Omit<import("react-native-reanimated").AnimatedProps<Readonly<import("react-native").ViewProps>>, "ref"> & {
14
- ref?: (import("react").Ref<View> | import("react-native-reanimated").AnimatedRef | import("react-native-reanimated").AnimatedRef<typeof View>) | undefined;
15
- }) => import("react").JSX.Element>;
16
- Host: import("react").MemoExoticComponent<(props: import("./components/boundary/portal/components/host").PublicHostProps) => import("react").JSX.Element>;
17
- };
10
+ Boundary: import("./components/boundary").BoundaryComponent;
18
11
  View: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
19
12
  id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
20
13
  children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
@@ -92,14 +85,14 @@ declare const _default: {
92
85
  'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
93
86
  'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
94
87
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
95
- importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
88
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
96
89
  'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
97
90
  'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
98
91
  role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
99
92
  accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
100
93
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
101
94
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
102
- 'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
95
+ 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
103
96
  screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
104
97
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
105
98
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -118,103 +111,109 @@ declare const _default: {
118
111
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
119
112
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
120
113
  } & {
121
- animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
122
- id?: string | undefined | undefined;
123
- children?: import("react").ReactNode;
124
- pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
125
- collapsable?: boolean | undefined | undefined;
126
- hitSlop?: number | import("react-native").Insets | null | undefined;
127
- needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
128
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
129
- removeClippedSubviews?: boolean | undefined | undefined;
130
- testID?: string | undefined | undefined;
131
- nativeID?: string | undefined | undefined;
132
- collapsableChildren?: boolean | undefined | undefined;
133
- onBlur?: ((e: import("react-native").BlurEvent) => void) | null | undefined | undefined;
134
- onFocus?: ((e: import("react-native").FocusEvent) => void) | null | undefined | undefined;
135
- renderToHardwareTextureAndroid?: boolean | undefined | undefined;
136
- focusable?: boolean | undefined | undefined;
137
- tabIndex?: 0 | -1 | undefined | undefined;
138
- shouldRasterizeIOS?: boolean | undefined | undefined;
139
- isTVSelectable?: boolean | undefined | undefined;
140
- hasTVPreferredFocus?: boolean | undefined | undefined;
141
- tvParallaxShiftDistanceX?: number | undefined | undefined;
142
- tvParallaxShiftDistanceY?: number | undefined | undefined;
143
- tvParallaxTiltAngle?: number | undefined | undefined;
144
- tvParallaxMagnification?: number | undefined | undefined;
145
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
146
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
147
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
148
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
149
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
150
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
151
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
152
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
153
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
154
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
155
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
156
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
157
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
158
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
159
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
160
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
161
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
162
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
163
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
164
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
165
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
166
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
167
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
168
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
169
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
170
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
171
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
172
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
173
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
174
- accessible?: boolean | undefined | undefined;
114
+ animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
115
+ id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
116
+ children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
117
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
118
+ collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
119
+ hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
120
+ needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
121
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
122
+ removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
123
+ testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
124
+ nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
125
+ collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
126
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
127
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
128
+ renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
129
+ focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
130
+ tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
131
+ shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
132
+ isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
133
+ hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
134
+ tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
135
+ tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
136
+ tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
137
+ tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
138
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
139
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
140
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
141
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
142
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
143
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
144
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
145
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
146
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
147
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
148
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
149
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
150
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
151
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
152
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
153
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
154
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
155
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
156
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
157
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
158
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
159
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
160
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
161
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
162
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
163
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
164
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
165
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
166
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
167
+ accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
175
168
  accessibilityActions?: readonly Readonly<{
176
169
  name: import("react-native").AccessibilityActionName | string;
177
170
  label?: string | undefined;
178
- }>[] | undefined;
179
- accessibilityLabel?: string | undefined | undefined;
180
- 'aria-label'?: string | undefined | undefined;
181
- accessibilityRole?: import("react-native").AccessibilityRole | undefined;
182
- accessibilityState?: import("react-native").AccessibilityState | undefined;
183
- 'aria-busy'?: boolean | undefined | undefined;
184
- 'aria-checked'?: boolean | "mixed" | undefined | undefined;
185
- 'aria-disabled'?: boolean | undefined | undefined;
186
- 'aria-expanded'?: boolean | undefined | undefined;
187
- 'aria-selected'?: boolean | undefined | undefined;
188
- accessibilityHint?: string | undefined | undefined;
189
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
190
- 'aria-valuemax'?: number | undefined;
191
- 'aria-valuemin'?: number | undefined;
192
- 'aria-valuenow'?: number | undefined;
193
- 'aria-valuetext'?: string | undefined;
194
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
195
- importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
196
- 'aria-hidden'?: boolean | undefined | undefined;
197
- 'aria-modal'?: boolean | undefined | undefined;
198
- role?: import("react-native").Role | undefined;
199
- accessibilityLabelledBy?: string | string[] | undefined | undefined;
200
- 'aria-labelledby'?: string | undefined | undefined;
201
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
202
- 'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
203
- screenReaderFocusable?: boolean | undefined | undefined;
204
- accessibilityElementsHidden?: boolean | undefined | undefined;
205
- accessibilityViewIsModal?: boolean | undefined | undefined;
206
- onAccessibilityEscape?: (() => void) | undefined | undefined;
207
- onAccessibilityTap?: (() => void) | undefined | undefined;
208
- onMagicTap?: (() => void) | undefined | undefined;
209
- accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
210
- accessibilityLanguage?: string | undefined | undefined;
211
- accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
212
- accessibilityLargeContentTitle?: string | undefined | undefined;
213
- accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
214
- }>> | undefined;
215
- } & {
216
- sharedTransitionTag?: string;
217
- sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
171
+ }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
172
+ name: import("react-native").AccessibilityActionName | string;
173
+ label?: string | undefined;
174
+ }>[] | undefined> | undefined;
175
+ accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
176
+ 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
177
+ accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
178
+ accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
179
+ 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
180
+ 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
181
+ 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
182
+ 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
183
+ 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
184
+ accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
185
+ accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
186
+ 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
187
+ 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
188
+ 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
189
+ 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
190
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
191
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
192
+ 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
193
+ 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
194
+ role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
195
+ accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
196
+ 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
197
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
198
+ 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
199
+ screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
200
+ accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
201
+ accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
202
+ onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
203
+ onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
204
+ onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
205
+ accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
206
+ accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
207
+ accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
208
+ accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
209
+ accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
210
+ } & {
211
+ style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
212
+ } & {
213
+ layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
214
+ entering?: import("react-native-reanimated").EntryOrExitLayoutType;
215
+ exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
216
+ }> | import("react-native-reanimated").CSSStyle<import("react-native").ViewProps>> | undefined;
218
217
  } & {
219
218
  styleId?: string;
220
219
  sharedBoundTag?: string;
@@ -223,7 +222,7 @@ declare const _default: {
223
222
  Pressable: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
224
223
  id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
225
224
  key?: import("react").Key | import("react-native-reanimated").SharedValue<import("react").Key | null | undefined> | null | undefined;
226
- children?: import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => import("react").ReactNode) | import("react-native-reanimated").SharedValue<import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => import("react").ReactNode)>;
225
+ 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)>;
227
226
  ref?: import("react").Ref<View> | import("react-native-reanimated").SharedValue<import("react").Ref<View> | undefined> | undefined;
228
227
  pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
229
228
  collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -299,14 +298,14 @@ declare const _default: {
299
298
  'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
300
299
  'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
301
300
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
302
- importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
301
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
303
302
  'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
304
303
  'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
305
304
  role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
306
305
  accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
307
306
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
308
307
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
309
- 'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
308
+ 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
310
309
  screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
311
310
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
312
311
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -318,12 +317,11 @@ declare const _default: {
318
317
  accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
319
318
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
320
319
  accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
321
- disabled?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
322
320
  onPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
321
+ disabled?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
323
322
  onHoverIn?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
324
323
  onHoverOut?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
325
324
  onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
326
- onPressMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
327
325
  onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
328
326
  onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
329
327
  cancelable?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
@@ -342,127 +340,132 @@ declare const _default: {
342
340
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
343
341
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
344
342
  } & {
345
- animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
346
- id?: string | undefined | undefined;
347
- key?: import("react").Key | null | undefined;
348
- children?: import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => import("react").ReactNode);
349
- ref?: import("react").Ref<View> | undefined;
350
- pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
351
- collapsable?: boolean | undefined | undefined;
352
- hitSlop?: number | import("react-native").Insets | null | undefined;
353
- needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
354
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
355
- removeClippedSubviews?: boolean | undefined | undefined;
356
- testID?: string | undefined | undefined;
357
- nativeID?: string | undefined | undefined;
358
- collapsableChildren?: boolean | undefined | undefined;
359
- onBlur?: null | ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | undefined | undefined;
360
- onFocus?: null | ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | undefined | undefined;
361
- renderToHardwareTextureAndroid?: boolean | undefined | undefined;
362
- focusable?: boolean | undefined | undefined;
363
- tabIndex?: 0 | -1 | undefined | undefined;
364
- shouldRasterizeIOS?: boolean | undefined | undefined;
365
- isTVSelectable?: boolean | undefined | undefined;
366
- hasTVPreferredFocus?: boolean | undefined | undefined;
367
- tvParallaxShiftDistanceX?: number | undefined | undefined;
368
- tvParallaxShiftDistanceY?: number | undefined | undefined;
369
- tvParallaxTiltAngle?: number | undefined | undefined;
370
- tvParallaxMagnification?: number | undefined | undefined;
371
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
372
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
373
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
374
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
375
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
376
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
377
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
378
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
379
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
380
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
381
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
382
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
383
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
384
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
385
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
386
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
387
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
388
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
389
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
390
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
391
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
392
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
393
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
394
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
395
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
396
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
397
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
398
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
399
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
400
- accessible?: boolean | undefined | undefined;
343
+ animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
344
+ id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
345
+ key?: import("react").Key | import("react-native-reanimated").SharedValue<import("react").Key | null | undefined> | null | undefined;
346
+ 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)>;
347
+ ref?: import("react").Ref<View> | import("react-native-reanimated").SharedValue<import("react").Ref<View> | undefined> | undefined;
348
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
349
+ collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
350
+ hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
351
+ needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
352
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
353
+ removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
354
+ testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
355
+ nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
356
+ collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
357
+ 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;
358
+ 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;
359
+ renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
360
+ focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
361
+ tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
362
+ shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
363
+ isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
364
+ hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
365
+ tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
366
+ tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
367
+ tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
368
+ tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
369
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
370
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
371
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
372
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
373
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
374
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
375
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
376
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
377
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
378
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
379
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
380
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
381
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
382
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
383
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
384
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
385
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
386
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
387
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
388
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
389
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
390
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
391
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
392
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
393
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
394
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
395
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
396
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
397
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
398
+ accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
401
399
  accessibilityActions?: readonly Readonly<{
402
400
  name: import("react-native").AccessibilityActionName | string;
403
401
  label?: string | undefined;
404
- }>[] | undefined;
405
- accessibilityLabel?: string | undefined | undefined;
406
- 'aria-label'?: string | undefined | undefined;
407
- accessibilityRole?: import("react-native").AccessibilityRole | undefined;
408
- accessibilityState?: import("react-native").AccessibilityState | undefined;
409
- 'aria-busy'?: boolean | undefined | undefined;
410
- 'aria-checked'?: boolean | "mixed" | undefined | undefined;
411
- 'aria-disabled'?: boolean | undefined | undefined;
412
- 'aria-expanded'?: boolean | undefined | undefined;
413
- 'aria-selected'?: boolean | undefined | undefined;
414
- accessibilityHint?: string | undefined | undefined;
415
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
416
- 'aria-valuemax'?: number | undefined;
417
- 'aria-valuemin'?: number | undefined;
418
- 'aria-valuenow'?: number | undefined;
419
- 'aria-valuetext'?: string | undefined;
420
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
421
- importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
422
- 'aria-hidden'?: boolean | undefined | undefined;
423
- 'aria-modal'?: boolean | undefined | undefined;
424
- role?: import("react-native").Role | undefined;
425
- accessibilityLabelledBy?: string | string[] | undefined | undefined;
426
- 'aria-labelledby'?: string | undefined | undefined;
427
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
428
- 'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
429
- screenReaderFocusable?: boolean | undefined | undefined;
430
- accessibilityElementsHidden?: boolean | undefined | undefined;
431
- accessibilityViewIsModal?: boolean | undefined | undefined;
432
- onAccessibilityEscape?: (() => void) | undefined | undefined;
433
- onAccessibilityTap?: (() => void) | undefined | undefined;
434
- onMagicTap?: (() => void) | undefined | undefined;
435
- accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
436
- accessibilityLanguage?: string | undefined | undefined;
437
- accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
438
- accessibilityLargeContentTitle?: string | undefined | undefined;
439
- accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
440
- disabled?: null | boolean | undefined | undefined;
441
- onPress?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
442
- onHoverIn?: null | ((event: import("react-native").MouseEvent) => void) | undefined | undefined;
443
- onHoverOut?: null | ((event: import("react-native").MouseEvent) => void) | undefined | undefined;
444
- onPressIn?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
445
- onPressMove?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
446
- onPressOut?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
447
- onLongPress?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
448
- cancelable?: null | boolean | undefined | undefined;
449
- delayHoverIn?: number | null | undefined | undefined;
450
- delayHoverOut?: number | null | undefined | undefined;
451
- delayLongPress?: null | number | undefined | undefined;
452
- pressRetentionOffset?: number | import("react-native").Insets | null | undefined;
453
- android_disableSound?: null | boolean | undefined | undefined;
454
- android_ripple?: import("react-native").PressableAndroidRippleConfig | null | undefined;
455
- testOnly_pressed?: null | boolean | undefined | undefined;
456
- unstable_pressDelay?: number | undefined | undefined;
457
- }>> | undefined;
458
- } & {
459
- sharedTransitionTag?: string;
460
- sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
402
+ }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
403
+ name: import("react-native").AccessibilityActionName | string;
404
+ label?: string | undefined;
405
+ }>[] | undefined> | undefined;
406
+ accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
407
+ 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
408
+ accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
409
+ accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
410
+ 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
411
+ 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
412
+ 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
413
+ 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
414
+ 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
415
+ accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
416
+ accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
417
+ 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
418
+ 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
419
+ 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
420
+ 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
421
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
422
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
423
+ 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
424
+ 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
425
+ role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
426
+ accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
427
+ 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
428
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
429
+ 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
430
+ screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
431
+ accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
432
+ accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
433
+ onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
434
+ onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
435
+ onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
436
+ accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
437
+ accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
438
+ accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
439
+ accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
440
+ accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
441
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
442
+ disabled?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
443
+ onHoverIn?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
444
+ onHoverOut?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
445
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
446
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
447
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
448
+ cancelable?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
449
+ delayHoverIn?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
450
+ delayHoverOut?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
451
+ delayLongPress?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
452
+ pressRetentionOffset?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
453
+ android_disableSound?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
454
+ android_ripple?: import("react-native").PressableAndroidRippleConfig | import("react-native-reanimated").SharedValue<import("react-native").PressableAndroidRippleConfig | null | undefined> | null | undefined;
455
+ testOnly_pressed?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
456
+ unstable_pressDelay?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
457
+ } & {
458
+ 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>)>>;
459
+ } & {
460
+ layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
461
+ entering?: import("react-native-reanimated").EntryOrExitLayoutType;
462
+ exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
463
+ }> | import("react-native-reanimated").CSSStyle<import("react-native").PressableProps & import("react").RefAttributes<View>>> | undefined;
461
464
  } & {
462
465
  styleId?: string;
463
466
  sharedBoundTag?: string;
464
467
  remeasureOnFocus?: boolean;
465
- } & import("react").RefAttributes<never>>>;
468
+ } & import("react").RefAttributes<View | import("react").Component<import("react-native").PressableProps & import("react").RefAttributes<View>, any, any>>>>;
466
469
  ScrollView: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
467
470
  horizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
468
471
  id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
@@ -541,14 +544,14 @@ declare const _default: {
541
544
  'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
542
545
  'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
543
546
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
544
- importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
547
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
545
548
  'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
546
549
  'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
547
550
  role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
548
551
  accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
549
552
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
550
553
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
551
- 'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
554
+ 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
552
555
  screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
553
556
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
554
557
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -560,24 +563,18 @@ declare const _default: {
560
563
  accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
561
564
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
562
565
  accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
563
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
564
- fadingEdgeLength?: number | {
565
- start: number;
566
- end: number;
567
- } | import("react-native-reanimated").SharedValue<number | {
568
- start: number;
569
- end: number;
570
- } | undefined> | undefined;
566
+ 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;
567
+ 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;
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
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
570
+ scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
571
571
  innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
572
572
  scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
573
573
  decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
574
574
  invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
575
575
  keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
576
- onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
577
- 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;
576
+ keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
578
577
  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;
579
- 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;
580
- 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;
581
578
  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;
582
579
  pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
583
580
  scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -617,7 +614,6 @@ declare const _default: {
617
614
  minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
618
615
  onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
619
616
  pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
620
- scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
621
617
  scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
622
618
  scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
623
619
  scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -628,179 +624,198 @@ declare const _default: {
628
624
  scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
629
625
  overScrollMode?: "always" | "auto" | "never" | import("react-native-reanimated").SharedValue<"always" | "auto" | "never" | undefined> | undefined;
630
626
  nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
627
+ fadingEdgeLength?: number | {
628
+ start: number;
629
+ end: number;
630
+ } | import("react-native-reanimated").SharedValue<number | {
631
+ start: number;
632
+ end: number;
633
+ } | undefined> | undefined;
631
634
  persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
632
- scrollsChildToFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
633
635
  } & {
634
636
  style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
635
637
  contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
636
- indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"default" | "black" | "white" | undefined>>;
638
+ indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
637
639
  } & {
638
640
  layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
639
641
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
640
642
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
641
643
  } & {
642
- animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
643
- horizontal?: boolean | null | undefined | undefined;
644
- id?: string | undefined | undefined;
645
- children?: import("react").ReactNode;
646
- pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
647
- collapsable?: boolean | undefined | undefined;
648
- hitSlop?: number | import("react-native").Insets | null | undefined;
649
- needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
650
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
651
- removeClippedSubviews?: boolean | undefined | undefined;
652
- testID?: string | undefined | undefined;
653
- nativeID?: string | undefined | undefined;
654
- collapsableChildren?: boolean | undefined | undefined;
655
- onBlur?: ((e: import("react-native").BlurEvent) => void) | null | undefined | undefined;
656
- onFocus?: ((e: import("react-native").FocusEvent) => void) | null | undefined | undefined;
657
- renderToHardwareTextureAndroid?: boolean | undefined | undefined;
658
- focusable?: boolean | undefined | undefined;
659
- tabIndex?: 0 | -1 | undefined | undefined;
660
- shouldRasterizeIOS?: boolean | undefined | undefined;
661
- isTVSelectable?: boolean | undefined | undefined;
662
- hasTVPreferredFocus?: boolean | undefined | undefined;
663
- tvParallaxShiftDistanceX?: number | undefined | undefined;
664
- tvParallaxShiftDistanceY?: number | undefined | undefined;
665
- tvParallaxTiltAngle?: number | undefined | undefined;
666
- tvParallaxMagnification?: number | undefined | undefined;
667
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
668
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
669
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
670
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
671
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
672
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
673
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
674
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
675
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
676
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
677
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
678
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
679
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
680
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
681
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
682
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
683
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
684
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
685
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
686
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
687
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
688
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
689
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
690
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
691
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
692
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
693
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
694
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
695
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
696
- accessible?: boolean | undefined | undefined;
644
+ animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
645
+ horizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
646
+ id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
647
+ children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
648
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
649
+ collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
650
+ hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
651
+ needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
652
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
653
+ removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
654
+ testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
655
+ nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
656
+ collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
657
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
658
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
659
+ renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
660
+ focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
661
+ tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
662
+ shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
663
+ isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
664
+ hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
665
+ tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
666
+ tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
667
+ tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
668
+ tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
669
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
670
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
671
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
672
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
673
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
674
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
675
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
676
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
677
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
678
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
679
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
680
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
681
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
682
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
683
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
684
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
685
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
686
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
687
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
688
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
689
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
690
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
691
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
692
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
693
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
694
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
695
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
696
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
697
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
698
+ accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
697
699
  accessibilityActions?: readonly Readonly<{
698
700
  name: import("react-native").AccessibilityActionName | string;
699
701
  label?: string | undefined;
700
- }>[] | undefined;
701
- accessibilityLabel?: string | undefined | undefined;
702
- 'aria-label'?: string | undefined | undefined;
703
- accessibilityRole?: import("react-native").AccessibilityRole | undefined;
704
- accessibilityState?: import("react-native").AccessibilityState | undefined;
705
- 'aria-busy'?: boolean | undefined | undefined;
706
- 'aria-checked'?: boolean | "mixed" | undefined | undefined;
707
- 'aria-disabled'?: boolean | undefined | undefined;
708
- 'aria-expanded'?: boolean | undefined | undefined;
709
- 'aria-selected'?: boolean | undefined | undefined;
710
- accessibilityHint?: string | undefined | undefined;
711
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
712
- 'aria-valuemax'?: number | undefined;
713
- 'aria-valuemin'?: number | undefined;
714
- 'aria-valuenow'?: number | undefined;
715
- 'aria-valuetext'?: string | undefined;
716
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
717
- importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
718
- 'aria-hidden'?: boolean | undefined | undefined;
719
- 'aria-modal'?: boolean | undefined | undefined;
720
- role?: import("react-native").Role | undefined;
721
- accessibilityLabelledBy?: string | string[] | undefined | undefined;
722
- 'aria-labelledby'?: string | undefined | undefined;
723
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
724
- 'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
725
- screenReaderFocusable?: boolean | undefined | undefined;
726
- accessibilityElementsHidden?: boolean | undefined | undefined;
727
- accessibilityViewIsModal?: boolean | undefined | undefined;
728
- onAccessibilityEscape?: (() => void) | undefined | undefined;
729
- onAccessibilityTap?: (() => void) | undefined | undefined;
730
- onMagicTap?: (() => void) | undefined | undefined;
731
- accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
732
- accessibilityLanguage?: string | undefined | undefined;
733
- accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
734
- accessibilityLargeContentTitle?: string | undefined | undefined;
735
- accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
736
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | undefined | undefined;
702
+ }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
703
+ name: import("react-native").AccessibilityActionName | string;
704
+ label?: string | undefined;
705
+ }>[] | undefined> | undefined;
706
+ accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
707
+ 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
708
+ accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
709
+ accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
710
+ 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
711
+ 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
712
+ 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
713
+ 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
714
+ 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
715
+ accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
716
+ accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
717
+ 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
718
+ 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
719
+ 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
720
+ 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
721
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
722
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
723
+ 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
724
+ 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
725
+ role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
726
+ accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
727
+ 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
728
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
729
+ 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
730
+ screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
731
+ accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
732
+ accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
733
+ onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
734
+ onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
735
+ onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
736
+ accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
737
+ accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
738
+ accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
739
+ accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
740
+ accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
741
+ 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;
742
+ 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;
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
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
745
+ scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
746
+ innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
747
+ scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
748
+ decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
749
+ invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
750
+ keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
751
+ keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
752
+ 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;
753
+ 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;
754
+ pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
755
+ scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
756
+ showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
757
+ showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
758
+ stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
759
+ 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;
760
+ snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
761
+ snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
762
+ snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
763
+ snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
764
+ stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
765
+ disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
766
+ disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
767
+ StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
768
+ alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
769
+ alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
770
+ automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
771
+ automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
772
+ automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
773
+ bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
774
+ bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
775
+ canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
776
+ centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
777
+ contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
778
+ contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
779
+ contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
780
+ directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
781
+ maintainVisibleContentPosition?: {
782
+ autoscrollToTopThreshold?: number | null | undefined;
783
+ minIndexForVisible: number;
784
+ } | import("react-native-reanimated").SharedValue<{
785
+ autoscrollToTopThreshold?: number | null | undefined;
786
+ minIndexForVisible: number;
787
+ } | null | undefined> | null | undefined;
788
+ maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
789
+ minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
790
+ onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
791
+ pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
792
+ scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
793
+ scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
794
+ scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
795
+ snapToAlignment?: "center" | "end" | "start" | import("react-native-reanimated").SharedValue<"center" | "end" | "start" | undefined> | undefined;
796
+ 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;
797
+ zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
798
+ endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
799
+ scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
800
+ overScrollMode?: "always" | "auto" | "never" | import("react-native-reanimated").SharedValue<"always" | "auto" | "never" | undefined> | undefined;
801
+ nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
737
802
  fadingEdgeLength?: number | {
738
803
  start: number;
739
804
  end: number;
740
- } | undefined | undefined;
741
- innerViewRef?: import("react").RefObject<View> | undefined;
742
- scrollViewRef?: import("react").RefObject<ScrollView> | undefined;
743
- decelerationRate?: "fast" | "normal" | number | undefined | undefined;
744
- invertStickyHeaders?: boolean | undefined | undefined;
745
- keyboardDismissMode?: "none" | "interactive" | "on-drag" | undefined | undefined;
746
- onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | undefined | undefined;
747
- onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
748
- onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
749
- onScrollEndDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
750
- onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
751
- onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
752
- pagingEnabled?: boolean | undefined | undefined;
753
- scrollEnabled?: boolean | undefined | undefined;
754
- showsHorizontalScrollIndicator?: boolean | undefined | undefined;
755
- showsVerticalScrollIndicator?: boolean | undefined | undefined;
756
- stickyHeaderHiddenOnScroll?: boolean | undefined | undefined;
757
- refreshControl?: import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | undefined;
758
- snapToInterval?: number | undefined | undefined;
759
- snapToOffsets?: number[] | undefined | undefined;
760
- snapToStart?: boolean | undefined | undefined;
761
- snapToEnd?: boolean | undefined | undefined;
762
- stickyHeaderIndices?: number[] | undefined | undefined;
763
- disableIntervalMomentum?: boolean | undefined | undefined;
764
- disableScrollViewPanResponder?: boolean | undefined | undefined;
765
- StickyHeaderComponent?: import("react").ComponentType<any> | undefined;
766
- alwaysBounceHorizontal?: boolean | undefined | undefined;
767
- alwaysBounceVertical?: boolean | undefined | undefined;
768
- automaticallyAdjustContentInsets?: boolean | undefined | undefined;
769
- automaticallyAdjustKeyboardInsets?: boolean | undefined | undefined;
770
- automaticallyAdjustsScrollIndicatorInsets?: boolean | undefined | undefined;
771
- bounces?: boolean | undefined | undefined;
772
- bouncesZoom?: boolean | undefined | undefined;
773
- canCancelContentTouches?: boolean | undefined | undefined;
774
- centerContent?: boolean | undefined | undefined;
775
- contentInset?: import("react-native").Insets | undefined;
776
- contentOffset?: import("react-native").PointProp | undefined;
777
- contentInsetAdjustmentBehavior?: "automatic" | "scrollableAxes" | "never" | "always" | undefined | undefined;
778
- directionalLockEnabled?: boolean | undefined | undefined;
779
- maintainVisibleContentPosition?: null | {
780
- autoscrollToTopThreshold?: number | null | undefined;
781
- minIndexForVisible: number;
782
- } | undefined | undefined;
783
- maximumZoomScale?: number | undefined | undefined;
784
- minimumZoomScale?: number | undefined | undefined;
785
- onScrollAnimationEnd?: (() => void) | undefined | undefined;
786
- pinchGestureEnabled?: boolean | undefined | undefined;
787
- scrollEventThrottle?: number | undefined | undefined;
788
- scrollIndicatorInsets?: import("react-native").Insets | undefined;
789
- scrollToOverflowEnabled?: boolean | undefined | undefined;
790
- scrollsToTop?: boolean | undefined | undefined;
791
- snapToAlignment?: "start" | "center" | "end" | undefined | undefined;
792
- onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
793
- zoomScale?: number | undefined | undefined;
794
- endFillColor?: import("react-native").ColorValue | undefined;
795
- scrollPerfTag?: string | undefined | undefined;
796
- overScrollMode?: "auto" | "always" | "never" | undefined | undefined;
797
- nestedScrollEnabled?: boolean | undefined | undefined;
798
- persistentScrollbar?: boolean | undefined | undefined;
799
- scrollsChildToFocus?: boolean | undefined | undefined;
800
- }>> | undefined;
801
- } & {
802
- sharedTransitionTag?: string;
803
- sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
805
+ } | import("react-native-reanimated").SharedValue<number | {
806
+ start: number;
807
+ end: number;
808
+ } | undefined> | undefined;
809
+ persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
810
+ } & {
811
+ style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
812
+ contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
813
+ indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
814
+ } & {
815
+ layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
816
+ entering?: import("react-native-reanimated").EntryOrExitLayoutType;
817
+ exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
818
+ }> | import("react-native-reanimated").CSSStyle<import("react-native").ScrollViewProps>> | undefined;
804
819
  } & {
805
820
  styleId?: string;
806
821
  sharedBoundTag?: string;
@@ -884,14 +899,14 @@ declare const _default: {
884
899
  'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
885
900
  'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
886
901
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
887
- importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
902
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
888
903
  'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
889
904
  'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
890
905
  role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
891
906
  accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
892
907
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
893
908
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
894
- 'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
909
+ 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
895
910
  screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
896
911
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
897
912
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -904,7 +919,75 @@ declare const _default: {
904
919
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
905
920
  accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
906
921
  data: ArrayLike<unknown> | import("react-native-reanimated").SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
922
+ 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;
923
+ 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;
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
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
926
+ scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
927
+ innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
928
+ scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
929
+ decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
930
+ invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
931
+ keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
907
932
  keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
933
+ 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;
934
+ 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;
935
+ pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
936
+ scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
937
+ showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
938
+ showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
939
+ stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
940
+ 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;
941
+ snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
942
+ snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
943
+ snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
944
+ snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
945
+ stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
946
+ disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
947
+ disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
948
+ StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
949
+ alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
950
+ alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
951
+ automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
952
+ automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
953
+ automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
954
+ bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
955
+ bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
956
+ canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
957
+ centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
958
+ contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
959
+ contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
960
+ contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
961
+ directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
962
+ maintainVisibleContentPosition?: {
963
+ autoscrollToTopThreshold?: number | null | undefined;
964
+ minIndexForVisible: number;
965
+ } | import("react-native-reanimated").SharedValue<{
966
+ autoscrollToTopThreshold?: number | null | undefined;
967
+ minIndexForVisible: number;
968
+ } | null | undefined> | null | undefined;
969
+ maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
970
+ minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
971
+ onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
972
+ pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
973
+ scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
974
+ scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
975
+ scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
976
+ snapToAlignment?: "center" | "end" | "start" | import("react-native-reanimated").SharedValue<"center" | "end" | "start" | undefined> | undefined;
977
+ 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;
978
+ zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
979
+ endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
980
+ scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
981
+ overScrollMode?: "always" | "auto" | "never" | import("react-native-reanimated").SharedValue<"always" | "auto" | "never" | undefined> | undefined;
982
+ nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
983
+ fadingEdgeLength?: number | {
984
+ start: number;
985
+ end: number;
986
+ } | import("react-native-reanimated").SharedValue<number | {
987
+ start: number;
988
+ end: number;
989
+ } | undefined> | undefined;
990
+ persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
908
991
  extraData?: any | undefined;
909
992
  getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
910
993
  length: number;
@@ -931,17 +1014,10 @@ declare const _default: {
931
1014
  refreshing?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
932
1015
  renderItem: import("react-native").ListRenderItem<unknown> | import("react-native-reanimated").SharedValue<import("react-native").ListRenderItem<unknown> | null | undefined> | null | undefined;
933
1016
  viewabilityConfig?: import("react-native").ViewabilityConfig | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfig | undefined> | undefined;
934
- fadingEdgeLength?: number | {
935
- start: number;
936
- end: number;
937
- } | import("react-native-reanimated").SharedValue<number | {
938
- start: number;
939
- end: number;
940
- } | undefined> | undefined;
941
- ItemSeparatorComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined> | null | undefined;
942
- ListEmptyComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined> | null | undefined;
943
- ListFooterComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined> | null | undefined;
944
- ListHeaderComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined> | null | undefined;
1017
+ ItemSeparatorComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | null | undefined> | null | undefined;
1018
+ 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;
1019
+ 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;
1020
+ 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;
945
1021
  debug?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
946
1022
  disableVirtualization?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
947
1023
  getItem?: ((data: any, index: number) => unknown) | import("react-native-reanimated").SharedValue<((data: any, index: number) => unknown) | undefined> | undefined;
@@ -970,296 +1046,265 @@ declare const _default: {
970
1046
  }) => void) | null | undefined> | null | undefined;
971
1047
  onStartReachedThreshold?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
972
1048
  progressViewOffset?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
973
- renderScrollComponent?: ((props: import("react-native").ScrollViewProps) => import("react").ReactElement<import("react-native").ScrollViewProps>) | import("react-native-reanimated").SharedValue<((props: import("react-native").ScrollViewProps) => import("react").ReactElement<import("react-native").ScrollViewProps>) | undefined> | undefined;
1049
+ 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;
974
1050
  updateCellsBatchingPeriod?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
975
1051
  viewabilityConfigCallbackPairs?: import("react-native").ViewabilityConfigCallbackPairs | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfigCallbackPairs | undefined> | undefined;
976
1052
  windowSize?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
977
1053
  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;
978
- innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
979
- scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
980
- decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
981
- invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
982
- keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
983
- onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
984
- 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;
985
- 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;
986
- 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;
987
- 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;
988
- 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;
989
- pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
990
- scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
991
- showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
992
- showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
993
- stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
994
- 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;
995
- snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
996
- snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
997
- snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
998
- snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
999
- stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
1000
- disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1001
- disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1002
- StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
1003
- alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1004
- alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1005
- automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1006
- automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1007
- automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1008
- bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1009
- bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1010
- canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1011
- centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1012
- contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1013
- contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
1014
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
1015
- directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1016
- maintainVisibleContentPosition?: {
1017
- autoscrollToTopThreshold?: number | null | undefined;
1018
- minIndexForVisible: number;
1019
- } | import("react-native-reanimated").SharedValue<{
1020
- autoscrollToTopThreshold?: number | null | undefined;
1021
- minIndexForVisible: number;
1022
- } | null | undefined> | null | undefined;
1023
- maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1024
- minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1025
- onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1026
- pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1027
- scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1028
- scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1029
- scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1030
- scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1031
- snapToAlignment?: "center" | "end" | "start" | import("react-native-reanimated").SharedValue<"center" | "end" | "start" | undefined> | undefined;
1032
- 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;
1033
- zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1034
- endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
1035
- scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1036
- overScrollMode?: "always" | "auto" | "never" | import("react-native-reanimated").SharedValue<"always" | "auto" | "never" | undefined> | undefined;
1037
- nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1038
- persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1039
- scrollsChildToFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1040
1054
  } & {
1041
1055
  style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1056
+ contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1057
+ indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
1042
1058
  columnWrapperStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1043
1059
  ListFooterComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1044
1060
  ListHeaderComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1045
- contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1046
- indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"default" | "black" | "white" | undefined>>;
1047
1061
  } & {
1048
1062
  layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
1049
1063
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
1050
1064
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
1051
1065
  } & {
1052
- animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
1053
- horizontal?: boolean | null | undefined | undefined;
1054
- id?: string | undefined | undefined;
1055
- children?: import("react").ReactNode;
1056
- pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
1057
- collapsable?: boolean | undefined | undefined;
1058
- hitSlop?: number | import("react-native").Insets | null | undefined;
1059
- needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
1060
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
1061
- removeClippedSubviews?: boolean | undefined | undefined;
1062
- testID?: string | undefined | undefined;
1063
- nativeID?: string | undefined | undefined;
1064
- collapsableChildren?: boolean | undefined | undefined;
1065
- onBlur?: ((e: import("react-native").BlurEvent) => void) | null | undefined | undefined;
1066
- onFocus?: ((e: import("react-native").FocusEvent) => void) | null | undefined | undefined;
1067
- renderToHardwareTextureAndroid?: boolean | undefined | undefined;
1068
- focusable?: boolean | undefined | undefined;
1069
- tabIndex?: 0 | -1 | undefined | undefined;
1070
- shouldRasterizeIOS?: boolean | undefined | undefined;
1071
- isTVSelectable?: boolean | undefined | undefined;
1072
- hasTVPreferredFocus?: boolean | undefined | undefined;
1073
- tvParallaxShiftDistanceX?: number | undefined | undefined;
1074
- tvParallaxShiftDistanceY?: number | undefined | undefined;
1075
- tvParallaxTiltAngle?: number | undefined | undefined;
1076
- tvParallaxMagnification?: number | undefined | undefined;
1077
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1078
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1079
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1080
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1081
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1082
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1083
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1084
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1085
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1086
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1087
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1088
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1089
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1090
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1091
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1092
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1093
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1094
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1095
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1096
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1097
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1098
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1099
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1100
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1101
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1102
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1103
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1104
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1105
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1106
- accessible?: boolean | undefined | undefined;
1066
+ animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
1067
+ horizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
1068
+ id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1069
+ children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
1070
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
1071
+ collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1072
+ hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
1073
+ needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1074
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
1075
+ removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1076
+ testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1077
+ nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1078
+ collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1079
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
1080
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
1081
+ renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1082
+ focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1083
+ tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
1084
+ shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1085
+ isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1086
+ hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1087
+ tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1088
+ tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1089
+ tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1090
+ tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1091
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1092
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1093
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1094
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1095
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1096
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1097
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1098
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1099
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1100
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1101
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1102
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1103
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1104
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1105
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1106
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1107
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1108
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1109
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1110
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1111
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1112
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1113
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1114
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1115
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1116
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1117
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1118
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1119
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1120
+ accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1107
1121
  accessibilityActions?: readonly Readonly<{
1108
1122
  name: import("react-native").AccessibilityActionName | string;
1109
1123
  label?: string | undefined;
1110
- }>[] | undefined;
1111
- accessibilityLabel?: string | undefined | undefined;
1112
- 'aria-label'?: string | undefined | undefined;
1113
- accessibilityRole?: import("react-native").AccessibilityRole | undefined;
1114
- accessibilityState?: import("react-native").AccessibilityState | undefined;
1115
- 'aria-busy'?: boolean | undefined | undefined;
1116
- 'aria-checked'?: boolean | "mixed" | undefined | undefined;
1117
- 'aria-disabled'?: boolean | undefined | undefined;
1118
- 'aria-expanded'?: boolean | undefined | undefined;
1119
- 'aria-selected'?: boolean | undefined | undefined;
1120
- accessibilityHint?: string | undefined | undefined;
1121
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1122
- 'aria-valuemax'?: number | undefined;
1123
- 'aria-valuemin'?: number | undefined;
1124
- 'aria-valuenow'?: number | undefined;
1125
- 'aria-valuetext'?: string | undefined;
1126
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
1127
- importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
1128
- 'aria-hidden'?: boolean | undefined | undefined;
1129
- 'aria-modal'?: boolean | undefined | undefined;
1130
- role?: import("react-native").Role | undefined;
1131
- accessibilityLabelledBy?: string | string[] | undefined | undefined;
1132
- 'aria-labelledby'?: string | undefined | undefined;
1133
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
1134
- 'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
1135
- screenReaderFocusable?: boolean | undefined | undefined;
1136
- accessibilityElementsHidden?: boolean | undefined | undefined;
1137
- accessibilityViewIsModal?: boolean | undefined | undefined;
1138
- onAccessibilityEscape?: (() => void) | undefined | undefined;
1139
- onAccessibilityTap?: (() => void) | undefined | undefined;
1140
- onMagicTap?: (() => void) | undefined | undefined;
1141
- accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
1142
- accessibilityLanguage?: string | undefined | undefined;
1143
- accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
1144
- accessibilityLargeContentTitle?: string | undefined | undefined;
1145
- accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
1146
- data?: ArrayLike<unknown> | null | undefined;
1147
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | undefined | undefined;
1124
+ }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
1125
+ name: import("react-native").AccessibilityActionName | string;
1126
+ label?: string | undefined;
1127
+ }>[] | undefined> | undefined;
1128
+ accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1129
+ 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1130
+ accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
1131
+ accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
1132
+ 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1133
+ 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
1134
+ 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1135
+ 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1136
+ 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1137
+ accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1138
+ accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
1139
+ 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1140
+ 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1141
+ 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1142
+ 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1143
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
1144
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
1145
+ 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1146
+ 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1147
+ role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
1148
+ accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
1149
+ 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1150
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
1151
+ 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
1152
+ screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1153
+ accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1154
+ accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1155
+ onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1156
+ onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1157
+ onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1158
+ accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1159
+ accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1160
+ accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1161
+ accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1162
+ accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1163
+ data: ArrayLike<unknown> | import("react-native-reanimated").SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
1164
+ 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;
1165
+ 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;
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
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
1168
+ scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1169
+ innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
1170
+ scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
1171
+ decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
1172
+ invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1173
+ keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
1174
+ keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
1175
+ 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;
1176
+ 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;
1177
+ pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1178
+ scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1179
+ showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1180
+ showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1181
+ stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1182
+ 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;
1183
+ snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1184
+ snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
1185
+ snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1186
+ snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1187
+ stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
1188
+ disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1189
+ disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1190
+ StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
1191
+ alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1192
+ alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1193
+ automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1194
+ automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1195
+ automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1196
+ bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1197
+ bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1198
+ canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1199
+ centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1200
+ contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1201
+ contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
1202
+ contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
1203
+ directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1204
+ maintainVisibleContentPosition?: {
1205
+ autoscrollToTopThreshold?: number | null | undefined;
1206
+ minIndexForVisible: number;
1207
+ } | import("react-native-reanimated").SharedValue<{
1208
+ autoscrollToTopThreshold?: number | null | undefined;
1209
+ minIndexForVisible: number;
1210
+ } | null | undefined> | null | undefined;
1211
+ maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1212
+ minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1213
+ onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1214
+ pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1215
+ scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1216
+ scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1217
+ scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1218
+ snapToAlignment?: "center" | "end" | "start" | import("react-native-reanimated").SharedValue<"center" | "end" | "start" | undefined> | undefined;
1219
+ 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;
1220
+ zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1221
+ endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
1222
+ scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1223
+ overScrollMode?: "always" | "auto" | "never" | import("react-native-reanimated").SharedValue<"always" | "auto" | "never" | undefined> | undefined;
1224
+ nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1225
+ fadingEdgeLength?: number | {
1226
+ start: number;
1227
+ end: number;
1228
+ } | import("react-native-reanimated").SharedValue<number | {
1229
+ start: number;
1230
+ end: number;
1231
+ } | undefined> | undefined;
1232
+ persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1148
1233
  extraData?: any | undefined;
1149
1234
  getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
1150
1235
  length: number;
1151
1236
  offset: number;
1152
1237
  index: number;
1153
- }) | undefined;
1154
- initialNumToRender?: number | undefined | undefined;
1155
- initialScrollIndex?: number | null | undefined | undefined;
1156
- keyExtractor?: ((item: unknown, index: number) => string) | undefined;
1157
- legacyImplementation?: boolean | undefined | undefined;
1158
- numColumns?: number | undefined | undefined;
1159
- onRefresh?: (() => void) | null | undefined | undefined;
1238
+ }) | import("react-native-reanimated").SharedValue<((data: ArrayLike<unknown> | null | undefined, index: number) => {
1239
+ length: number;
1240
+ offset: number;
1241
+ index: number;
1242
+ }) | undefined> | undefined;
1243
+ initialNumToRender?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1244
+ initialScrollIndex?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
1245
+ keyExtractor?: ((item: unknown, index: number) => string) | import("react-native-reanimated").SharedValue<((item: unknown, index: number) => string) | undefined> | undefined;
1246
+ legacyImplementation?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1247
+ numColumns?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1248
+ onRefresh?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | null | undefined> | null | undefined;
1160
1249
  onViewableItemsChanged?: ((info: {
1161
1250
  viewableItems: import("react-native").ViewToken<unknown>[];
1162
1251
  changed: import("react-native").ViewToken<unknown>[];
1163
- }) => void) | null | undefined;
1164
- refreshing?: boolean | null | undefined | undefined;
1165
- renderItem?: import("react-native").ListRenderItem<unknown> | null | undefined;
1166
- viewabilityConfig?: import("react-native").ViewabilityConfig | undefined;
1167
- fadingEdgeLength?: number | {
1168
- start: number;
1169
- end: number;
1170
- } | undefined | undefined;
1171
- ItemSeparatorComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined;
1172
- ListEmptyComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined;
1173
- ListFooterComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined;
1174
- ListHeaderComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined;
1175
- debug?: boolean | undefined | undefined;
1176
- disableVirtualization?: boolean | undefined | undefined;
1177
- getItem?: ((data: any, index: number) => unknown) | undefined;
1178
- getItemCount?: ((data: any) => number) | undefined | undefined;
1179
- inverted?: boolean | null | undefined | undefined;
1180
- maxToRenderPerBatch?: number | undefined | undefined;
1252
+ }) => void) | import("react-native-reanimated").SharedValue<((info: {
1253
+ viewableItems: import("react-native").ViewToken<unknown>[];
1254
+ changed: import("react-native").ViewToken<unknown>[];
1255
+ }) => void) | null | undefined> | null | undefined;
1256
+ refreshing?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
1257
+ renderItem: import("react-native").ListRenderItem<unknown> | import("react-native-reanimated").SharedValue<import("react-native").ListRenderItem<unknown> | null | undefined> | null | undefined;
1258
+ viewabilityConfig?: import("react-native").ViewabilityConfig | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfig | undefined> | undefined;
1259
+ ItemSeparatorComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | null | undefined> | null | undefined;
1260
+ 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;
1261
+ 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;
1262
+ 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;
1263
+ debug?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1264
+ disableVirtualization?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1265
+ getItem?: ((data: any, index: number) => unknown) | import("react-native-reanimated").SharedValue<((data: any, index: number) => unknown) | undefined> | undefined;
1266
+ getItemCount?: ((data: any) => number) | import("react-native-reanimated").SharedValue<((data: any) => number) | undefined> | undefined;
1267
+ inverted?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
1268
+ maxToRenderPerBatch?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1181
1269
  onEndReached?: ((info: {
1182
1270
  distanceFromEnd: number;
1183
- }) => void) | null | undefined | undefined;
1184
- onEndReachedThreshold?: number | null | undefined | undefined;
1271
+ }) => void) | import("react-native-reanimated").SharedValue<((info: {
1272
+ distanceFromEnd: number;
1273
+ }) => void) | null | undefined> | null | undefined;
1274
+ onEndReachedThreshold?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
1185
1275
  onScrollToIndexFailed?: ((info: {
1186
1276
  index: number;
1187
1277
  highestMeasuredFrameIndex: number;
1188
1278
  averageItemLength: number;
1189
- }) => void) | undefined | undefined;
1279
+ }) => void) | import("react-native-reanimated").SharedValue<((info: {
1280
+ index: number;
1281
+ highestMeasuredFrameIndex: number;
1282
+ averageItemLength: number;
1283
+ }) => void) | undefined> | undefined;
1190
1284
  onStartReached?: ((info: {
1191
1285
  distanceFromStart: number;
1192
- }) => void) | null | undefined | undefined;
1193
- onStartReachedThreshold?: number | null | undefined | undefined;
1194
- progressViewOffset?: number | undefined | undefined;
1195
- renderScrollComponent?: ((props: import("react-native").ScrollViewProps) => import("react").ReactElement<import("react-native").ScrollViewProps>) | undefined | undefined;
1196
- updateCellsBatchingPeriod?: number | undefined | undefined;
1197
- viewabilityConfigCallbackPairs?: import("react-native").ViewabilityConfigCallbackPairs | undefined;
1198
- windowSize?: number | undefined | undefined;
1199
- CellRendererComponent?: import("react").ComponentType<import("react-native").CellRendererProps<unknown>> | null | undefined;
1200
- innerViewRef?: import("react").RefObject<View> | undefined;
1201
- scrollViewRef?: import("react").RefObject<ScrollView> | undefined;
1202
- decelerationRate?: "fast" | "normal" | number | undefined | undefined;
1203
- invertStickyHeaders?: boolean | undefined | undefined;
1204
- keyboardDismissMode?: "none" | "interactive" | "on-drag" | undefined | undefined;
1205
- onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | undefined | undefined;
1206
- onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1207
- onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1208
- onScrollEndDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1209
- onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1210
- onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1211
- pagingEnabled?: boolean | undefined | undefined;
1212
- scrollEnabled?: boolean | undefined | undefined;
1213
- showsHorizontalScrollIndicator?: boolean | undefined | undefined;
1214
- showsVerticalScrollIndicator?: boolean | undefined | undefined;
1215
- stickyHeaderHiddenOnScroll?: boolean | undefined | undefined;
1216
- refreshControl?: import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | undefined;
1217
- snapToInterval?: number | undefined | undefined;
1218
- snapToOffsets?: number[] | undefined | undefined;
1219
- snapToStart?: boolean | undefined | undefined;
1220
- snapToEnd?: boolean | undefined | undefined;
1221
- stickyHeaderIndices?: number[] | undefined | undefined;
1222
- disableIntervalMomentum?: boolean | undefined | undefined;
1223
- disableScrollViewPanResponder?: boolean | undefined | undefined;
1224
- StickyHeaderComponent?: import("react").ComponentType<any> | undefined;
1225
- alwaysBounceHorizontal?: boolean | undefined | undefined;
1226
- alwaysBounceVertical?: boolean | undefined | undefined;
1227
- automaticallyAdjustContentInsets?: boolean | undefined | undefined;
1228
- automaticallyAdjustKeyboardInsets?: boolean | undefined | undefined;
1229
- automaticallyAdjustsScrollIndicatorInsets?: boolean | undefined | undefined;
1230
- bounces?: boolean | undefined | undefined;
1231
- bouncesZoom?: boolean | undefined | undefined;
1232
- canCancelContentTouches?: boolean | undefined | undefined;
1233
- centerContent?: boolean | undefined | undefined;
1234
- contentInset?: import("react-native").Insets | undefined;
1235
- contentOffset?: import("react-native").PointProp | undefined;
1236
- contentInsetAdjustmentBehavior?: "automatic" | "scrollableAxes" | "never" | "always" | undefined | undefined;
1237
- directionalLockEnabled?: boolean | undefined | undefined;
1238
- maintainVisibleContentPosition?: null | {
1239
- autoscrollToTopThreshold?: number | null | undefined;
1240
- minIndexForVisible: number;
1241
- } | undefined | undefined;
1242
- maximumZoomScale?: number | undefined | undefined;
1243
- minimumZoomScale?: number | undefined | undefined;
1244
- onScrollAnimationEnd?: (() => void) | undefined | undefined;
1245
- pinchGestureEnabled?: boolean | undefined | undefined;
1246
- scrollEventThrottle?: number | undefined | undefined;
1247
- scrollIndicatorInsets?: import("react-native").Insets | undefined;
1248
- scrollToOverflowEnabled?: boolean | undefined | undefined;
1249
- scrollsToTop?: boolean | undefined | undefined;
1250
- snapToAlignment?: "start" | "center" | "end" | undefined | undefined;
1251
- onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1252
- zoomScale?: number | undefined | undefined;
1253
- endFillColor?: import("react-native").ColorValue | undefined;
1254
- scrollPerfTag?: string | undefined | undefined;
1255
- overScrollMode?: "auto" | "always" | "never" | undefined | undefined;
1256
- nestedScrollEnabled?: boolean | undefined | undefined;
1257
- persistentScrollbar?: boolean | undefined | undefined;
1258
- scrollsChildToFocus?: boolean | undefined | undefined;
1259
- }>> | undefined;
1260
- } & {
1261
- sharedTransitionTag?: string;
1262
- sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
1286
+ }) => void) | import("react-native-reanimated").SharedValue<((info: {
1287
+ distanceFromStart: number;
1288
+ }) => void) | null | undefined> | null | undefined;
1289
+ onStartReachedThreshold?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
1290
+ progressViewOffset?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1291
+ 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;
1292
+ updateCellsBatchingPeriod?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1293
+ viewabilityConfigCallbackPairs?: import("react-native").ViewabilityConfigCallbackPairs | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfigCallbackPairs | undefined> | undefined;
1294
+ windowSize?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1295
+ 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;
1296
+ } & {
1297
+ style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1298
+ contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1299
+ indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
1300
+ columnWrapperStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1301
+ ListFooterComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1302
+ ListHeaderComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1303
+ } & {
1304
+ layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
1305
+ entering?: import("react-native-reanimated").EntryOrExitLayoutType;
1306
+ exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
1307
+ }> | import("react-native-reanimated").CSSStyle<import("react-native").FlatListProps<unknown>>> | undefined;
1263
1308
  } & {
1264
1309
  styleId?: string;
1265
1310
  sharedBoundTag?: string;
@@ -1294,7 +1339,6 @@ export default _default;
1294
1339
  export type { NativeStackAdapterOptions } from "./adapters/with-screen-transitions";
1295
1340
  export { withScreenTransitions } from "./adapters/with-screen-transitions";
1296
1341
  export { snapTo } from "./animation/snap-to";
1297
- export type { BoundaryPortal, BoundaryPortalAttachTarget, BoundaryPortalOptions, } from "./components/boundary";
1298
1342
  export { NAVIGATION_MASK_CONTAINER_STYLE_ID, NAVIGATION_MASK_ELEMENT_STYLE_ID, TRANSFORM_RESET, } from "./constants";
1299
1343
  export { useHistory } from "./hooks/navigation/use-history";
1300
1344
  export { type ScreenState, useScreenState, } from "./hooks/navigation/use-screen-state";