react-native-screen-transitions 3.4.0-rc.0 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/lib/commonjs/shared/components/screen-container/layers/maybe-masked-navigation-container.js +0 -1
  2. package/lib/commonjs/shared/components/screen-container/layers/maybe-masked-navigation-container.js.map +1 -1
  3. package/lib/commonjs/shared/constants.js +2 -2
  4. package/lib/commonjs/shared/constants.js.map +1 -1
  5. package/lib/commonjs/shared/hooks/gestures/use-scroll-registry.js +22 -12
  6. package/lib/commonjs/shared/hooks/gestures/use-scroll-registry.js.map +1 -1
  7. package/lib/commonjs/shared/typecheck/public-api.typecheck.js +5 -0
  8. package/lib/commonjs/shared/typecheck/public-api.typecheck.js.map +1 -1
  9. package/lib/commonjs/shared/types/animation.types.js +1 -3
  10. package/lib/commonjs/shared/types/animation.types.js.map +1 -1
  11. package/lib/commonjs/shared/utils/bounds/zoom/build.js +10 -8
  12. package/lib/commonjs/shared/utils/bounds/zoom/build.js.map +1 -1
  13. package/lib/module/shared/components/screen-container/layers/maybe-masked-navigation-container.js +0 -1
  14. package/lib/module/shared/components/screen-container/layers/maybe-masked-navigation-container.js.map +1 -1
  15. package/lib/module/shared/constants.js +2 -2
  16. package/lib/module/shared/constants.js.map +1 -1
  17. package/lib/module/shared/hooks/gestures/use-scroll-registry.js +22 -12
  18. package/lib/module/shared/hooks/gestures/use-scroll-registry.js.map +1 -1
  19. package/lib/module/shared/typecheck/public-api.typecheck.js +5 -0
  20. package/lib/module/shared/typecheck/public-api.typecheck.js.map +1 -1
  21. package/lib/module/shared/types/animation.types.js +44 -1
  22. package/lib/module/shared/types/animation.types.js.map +1 -1
  23. package/lib/module/shared/utils/bounds/zoom/build.js +10 -8
  24. package/lib/module/shared/utils/bounds/zoom/build.js.map +1 -1
  25. package/lib/typescript/shared/components/create-boundary-component/components/boundary-target.d.ts +3 -206
  26. package/lib/typescript/shared/components/create-boundary-component/components/boundary-target.d.ts.map +1 -1
  27. package/lib/typescript/shared/components/create-boundary-component/index.d.ts +2 -206
  28. package/lib/typescript/shared/components/create-boundary-component/index.d.ts.map +1 -1
  29. package/lib/typescript/shared/components/create-transition-aware-component.d.ts +5 -6
  30. package/lib/typescript/shared/components/create-transition-aware-component.d.ts.map +1 -1
  31. package/lib/typescript/shared/components/screen-container/layers/maybe-masked-navigation-container.d.ts.map +1 -1
  32. package/lib/typescript/shared/constants.d.ts +2 -2
  33. package/lib/typescript/shared/constants.d.ts.map +1 -1
  34. package/lib/typescript/shared/hooks/gestures/use-scroll-registry.d.ts.map +1 -1
  35. package/lib/typescript/shared/index.d.ts +647 -909
  36. package/lib/typescript/shared/index.d.ts.map +1 -1
  37. package/lib/typescript/shared/types/animation.types.d.ts +9 -0
  38. package/lib/typescript/shared/types/animation.types.d.ts.map +1 -1
  39. package/lib/typescript/shared/utils/bounds/zoom/build.d.ts.map +1 -1
  40. package/package.json +1 -1
  41. package/src/shared/components/screen-container/layers/maybe-masked-navigation-container.tsx +0 -1
  42. package/src/shared/constants.ts +4 -2
  43. package/src/shared/hooks/gestures/use-scroll-registry.ts +23 -12
  44. package/src/shared/typecheck/public-api.typecheck.ts +6 -0
  45. package/src/shared/types/animation.types.ts +12 -0
  46. package/src/shared/utils/bounds/zoom/build.ts +11 -8
@@ -8,212 +8,8 @@ declare const _default: {
8
8
  Boundary: {
9
9
  View: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "id"> & import("./components/create-boundary-component/types").BoundaryOwnProps & import("react").RefAttributes<never>>>;
10
10
  Trigger: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("react-native").PressableProps & import("react").RefAttributes<View>, "id"> & import("./components/create-boundary-component/types").BoundaryOwnProps & import("react").RefAttributes<View | import("react").Component<import("react-native").PressableProps & import("react").RefAttributes<View>, any, any>>>>;
11
- Target: import("react").NamedExoticComponent<{
12
- id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
13
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
14
- children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
15
- hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
16
- needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
17
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
18
- removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
19
- testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
20
- nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
21
- collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
22
- collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
23
- onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
24
- onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
25
- renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
26
- focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
27
- tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
28
- shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
29
- isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
30
- hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
31
- tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
32
- tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
33
- tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
34
- tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
35
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
36
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
37
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
38
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
39
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
40
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
41
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
42
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
43
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
44
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
45
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
46
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
47
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
48
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
49
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
50
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
51
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
52
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
53
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
54
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
55
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
56
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
57
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
58
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
59
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
60
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
61
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
62
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
63
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
64
- accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
65
- accessibilityActions?: readonly Readonly<{
66
- name: import("react-native").AccessibilityActionName | string;
67
- label?: string | undefined;
68
- }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
69
- name: import("react-native").AccessibilityActionName | string;
70
- label?: string | undefined;
71
- }>[] | undefined> | undefined;
72
- accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
73
- 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
74
- accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
75
- accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
76
- 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
77
- 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
78
- 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
79
- 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
80
- 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
81
- accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
82
- accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
83
- 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
84
- 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
85
- 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
86
- 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
87
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
88
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
89
- 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
90
- 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
91
- role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
92
- accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
93
- 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
94
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
95
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
96
- screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
97
- accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
98
- accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
99
- onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
100
- onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
101
- onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
102
- accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
103
- accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
104
- accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
105
- accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
106
- accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
107
- } & {
108
- style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
109
- } & {
110
- layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
111
- entering?: import("react-native-reanimated").EntryOrExitLayoutType;
112
- exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
113
- } & {
114
- animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
115
- id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
116
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
117
- children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
118
- hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
119
- needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
120
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
121
- removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
122
- testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
123
- nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
124
- collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | 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;
168
- accessibilityActions?: readonly Readonly<{
169
- name: import("react-native").AccessibilityActionName | string;
170
- label?: string | undefined;
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;
11
+ Target: import("react").NamedExoticComponent<Omit<import("react-native-reanimated").AnimatedProps<Readonly<import("react-native").ViewProps>>, "ref"> & {
12
+ ref?: (import("react-native-reanimated").AnimatedRef | import("react").Ref<View> | import("react-native-reanimated").AnimatedRef<typeof View>) | undefined;
217
13
  }>;
218
14
  };
219
15
  View: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
@@ -293,14 +89,14 @@ declare const _default: {
293
89
  'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
294
90
  'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
295
91
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
296
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
92
+ importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
297
93
  'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
298
94
  'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
299
95
  role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
300
96
  accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
301
97
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
302
98
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
303
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
99
+ 'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
304
100
  screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
305
101
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
306
102
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -319,109 +115,103 @@ declare const _default: {
319
115
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
320
116
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
321
117
  } & {
322
- animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
323
- id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
324
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
325
- children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
326
- hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
327
- needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
328
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
329
- removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
330
- testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
331
- nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
332
- collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
333
- collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
334
- onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
335
- onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
336
- renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
337
- focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
338
- tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
339
- shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
340
- isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
341
- hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
342
- tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
343
- tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
344
- tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
345
- tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
346
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
347
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
348
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
349
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
350
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
351
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
352
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
353
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
354
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
355
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
356
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
357
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
358
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
359
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
360
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
361
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
362
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
363
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
364
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
365
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
366
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
367
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
368
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
369
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
370
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
371
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
372
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
373
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
374
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
375
- accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
118
+ animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
119
+ id?: string | undefined | undefined;
120
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
121
+ children?: import("react").ReactNode;
122
+ hitSlop?: number | import("react-native").Insets | null | undefined;
123
+ needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
124
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
125
+ removeClippedSubviews?: boolean | undefined | undefined;
126
+ testID?: string | undefined | undefined;
127
+ nativeID?: string | undefined | undefined;
128
+ collapsable?: boolean | undefined | undefined;
129
+ collapsableChildren?: boolean | undefined | undefined;
130
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | null | undefined | undefined;
131
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | null | undefined | undefined;
132
+ renderToHardwareTextureAndroid?: boolean | undefined | undefined;
133
+ focusable?: boolean | undefined | undefined;
134
+ tabIndex?: 0 | -1 | undefined | undefined;
135
+ shouldRasterizeIOS?: boolean | undefined | undefined;
136
+ isTVSelectable?: boolean | undefined | undefined;
137
+ hasTVPreferredFocus?: boolean | undefined | undefined;
138
+ tvParallaxShiftDistanceX?: number | undefined | undefined;
139
+ tvParallaxShiftDistanceY?: number | undefined | undefined;
140
+ tvParallaxTiltAngle?: number | undefined | undefined;
141
+ tvParallaxMagnification?: number | undefined | undefined;
142
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
143
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
144
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
145
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
146
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
147
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
148
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
149
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
150
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
151
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
152
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
153
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
154
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
155
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
156
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
157
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
158
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
159
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
160
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
161
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
162
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
163
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
164
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
165
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
166
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
167
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
168
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
169
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
170
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
171
+ accessible?: boolean | undefined | undefined;
376
172
  accessibilityActions?: readonly Readonly<{
377
173
  name: import("react-native").AccessibilityActionName | string;
378
174
  label?: string | undefined;
379
- }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
380
- name: import("react-native").AccessibilityActionName | string;
381
- label?: string | undefined;
382
- }>[] | undefined> | undefined;
383
- accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
384
- 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
385
- accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
386
- accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
387
- 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
388
- 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
389
- 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
390
- 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
391
- 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
392
- accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
393
- accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
394
- 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
395
- 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
396
- 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
397
- 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
398
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
399
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
400
- 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
401
- 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
402
- role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
403
- accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
404
- 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
405
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
406
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
407
- screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
408
- accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
409
- accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
410
- onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
411
- onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
412
- onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
413
- accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
414
- accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
415
- accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
416
- accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
417
- accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
418
- } & {
419
- style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
420
- } & {
421
- layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
422
- entering?: import("react-native-reanimated").EntryOrExitLayoutType;
423
- exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
424
- }> | import("react-native-reanimated").CSSStyle<import("react-native").ViewProps>> | undefined;
175
+ }>[] | undefined;
176
+ accessibilityLabel?: string | undefined | undefined;
177
+ 'aria-label'?: string | undefined | undefined;
178
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
179
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
180
+ 'aria-busy'?: boolean | undefined | undefined;
181
+ 'aria-checked'?: boolean | "mixed" | undefined | undefined;
182
+ 'aria-disabled'?: boolean | undefined | undefined;
183
+ 'aria-expanded'?: boolean | undefined | undefined;
184
+ 'aria-selected'?: boolean | undefined | undefined;
185
+ accessibilityHint?: string | undefined | undefined;
186
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
187
+ 'aria-valuemax'?: number | undefined;
188
+ 'aria-valuemin'?: number | undefined;
189
+ 'aria-valuenow'?: number | undefined;
190
+ 'aria-valuetext'?: string | undefined;
191
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
192
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
193
+ 'aria-hidden'?: boolean | undefined | undefined;
194
+ 'aria-modal'?: boolean | undefined | undefined;
195
+ role?: import("react-native").Role | undefined;
196
+ accessibilityLabelledBy?: string | string[] | undefined | undefined;
197
+ 'aria-labelledby'?: string | undefined | undefined;
198
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
199
+ 'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
200
+ screenReaderFocusable?: boolean | undefined | undefined;
201
+ accessibilityElementsHidden?: boolean | undefined | undefined;
202
+ accessibilityViewIsModal?: boolean | undefined | undefined;
203
+ onAccessibilityEscape?: (() => void) | undefined | undefined;
204
+ onAccessibilityTap?: (() => void) | undefined | undefined;
205
+ onMagicTap?: (() => void) | undefined | undefined;
206
+ accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
207
+ accessibilityLanguage?: string | undefined | undefined;
208
+ accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
209
+ accessibilityLargeContentTitle?: string | undefined | undefined;
210
+ accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
211
+ }>> | undefined;
212
+ } & {
213
+ sharedTransitionTag?: string;
214
+ sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
425
215
  } & {
426
216
  styleId?: string;
427
217
  sharedBoundTag?: string;
@@ -506,14 +296,14 @@ declare const _default: {
506
296
  'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
507
297
  'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
508
298
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
509
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
299
+ importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
510
300
  'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
511
301
  'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
512
302
  role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
513
303
  accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
514
304
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
515
305
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
516
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
306
+ 'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
517
307
  screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
518
308
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
519
309
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -548,127 +338,121 @@ declare const _default: {
548
338
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
549
339
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
550
340
  } & {
551
- animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
552
- id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
553
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
554
- key?: import("react").Key | import("react-native-reanimated").SharedValue<import("react").Key | null | undefined> | null | undefined;
555
- 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)>;
556
- ref?: import("react").Ref<View> | import("react-native-reanimated").SharedValue<import("react").Ref<View> | undefined> | undefined;
557
- hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
558
- needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
559
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
560
- removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
561
- testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
562
- nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
563
- collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
564
- collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
565
- 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;
566
- 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;
567
- renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
568
- focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
569
- tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
570
- shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
571
- isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
572
- hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
573
- tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
574
- tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
575
- tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
576
- tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
577
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
578
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
579
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
580
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
581
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
582
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
583
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
584
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
585
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
586
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
587
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
588
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
589
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
590
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
591
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
592
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
593
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
594
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
595
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
596
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
597
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
598
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
599
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
600
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
601
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
602
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
603
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
604
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
605
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
606
- accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
341
+ animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
342
+ id?: string | undefined | undefined;
343
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
344
+ key?: import("react").Key | null | undefined;
345
+ children?: import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => React.ReactNode);
346
+ ref?: import("react").Ref<View> | undefined;
347
+ hitSlop?: number | import("react-native").Insets | null | undefined;
348
+ needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
349
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
350
+ removeClippedSubviews?: boolean | undefined | undefined;
351
+ testID?: string | undefined | undefined;
352
+ nativeID?: string | undefined | undefined;
353
+ collapsable?: boolean | undefined | undefined;
354
+ collapsableChildren?: boolean | undefined | undefined;
355
+ onBlur?: null | ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | undefined | undefined;
356
+ onFocus?: null | ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | undefined | undefined;
357
+ renderToHardwareTextureAndroid?: boolean | undefined | undefined;
358
+ focusable?: boolean | undefined | undefined;
359
+ tabIndex?: 0 | -1 | undefined | undefined;
360
+ shouldRasterizeIOS?: boolean | undefined | undefined;
361
+ isTVSelectable?: boolean | undefined | undefined;
362
+ hasTVPreferredFocus?: boolean | undefined | undefined;
363
+ tvParallaxShiftDistanceX?: number | undefined | undefined;
364
+ tvParallaxShiftDistanceY?: number | undefined | undefined;
365
+ tvParallaxTiltAngle?: number | undefined | undefined;
366
+ tvParallaxMagnification?: number | undefined | undefined;
367
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
368
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
369
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
370
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
371
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
372
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
373
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
374
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
375
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
376
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
377
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
378
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
379
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
380
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
381
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
382
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
383
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
384
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
385
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
386
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
387
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
388
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
389
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
390
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
391
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
392
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
393
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
394
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
395
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
396
+ accessible?: boolean | undefined | undefined;
607
397
  accessibilityActions?: readonly Readonly<{
608
398
  name: import("react-native").AccessibilityActionName | string;
609
399
  label?: string | undefined;
610
- }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
611
- name: import("react-native").AccessibilityActionName | string;
612
- label?: string | undefined;
613
- }>[] | undefined> | undefined;
614
- accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
615
- 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
616
- accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
617
- accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
618
- 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
619
- 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
620
- 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
621
- 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
622
- 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
623
- accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
624
- accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
625
- 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
626
- 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
627
- 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
628
- 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
629
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
630
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
631
- 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
632
- 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
633
- role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
634
- accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
635
- 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
636
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
637
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
638
- screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
639
- accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
640
- accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
641
- onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
642
- onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
643
- onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
644
- accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
645
- accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
646
- accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
647
- accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
648
- accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
649
- onPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
650
- onHoverIn?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
651
- onHoverOut?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
652
- onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
653
- onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
654
- onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
655
- cancelable?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
656
- delayHoverIn?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
657
- delayHoverOut?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
658
- delayLongPress?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
659
- disabled?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
660
- pressRetentionOffset?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
661
- android_disableSound?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
662
- android_ripple?: import("react-native").PressableAndroidRippleConfig | import("react-native-reanimated").SharedValue<import("react-native").PressableAndroidRippleConfig | null | undefined> | null | undefined;
663
- testOnly_pressed?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
664
- unstable_pressDelay?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
665
- } & {
666
- 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>)>>;
667
- } & {
668
- layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
669
- entering?: import("react-native-reanimated").EntryOrExitLayoutType;
670
- exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
671
- }> | import("react-native-reanimated").CSSStyle<import("react-native").PressableProps & import("react").RefAttributes<View>>> | undefined;
400
+ }>[] | undefined;
401
+ accessibilityLabel?: string | undefined | undefined;
402
+ 'aria-label'?: string | undefined | undefined;
403
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
404
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
405
+ 'aria-busy'?: boolean | undefined | undefined;
406
+ 'aria-checked'?: boolean | "mixed" | undefined | undefined;
407
+ 'aria-disabled'?: boolean | undefined | undefined;
408
+ 'aria-expanded'?: boolean | undefined | undefined;
409
+ 'aria-selected'?: boolean | undefined | undefined;
410
+ accessibilityHint?: string | undefined | undefined;
411
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
412
+ 'aria-valuemax'?: number | undefined;
413
+ 'aria-valuemin'?: number | undefined;
414
+ 'aria-valuenow'?: number | undefined;
415
+ 'aria-valuetext'?: string | undefined;
416
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
417
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
418
+ 'aria-hidden'?: boolean | undefined | undefined;
419
+ 'aria-modal'?: boolean | undefined | undefined;
420
+ role?: import("react-native").Role | undefined;
421
+ accessibilityLabelledBy?: string | string[] | undefined | undefined;
422
+ 'aria-labelledby'?: string | undefined | undefined;
423
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
424
+ 'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
425
+ screenReaderFocusable?: boolean | undefined | undefined;
426
+ accessibilityElementsHidden?: boolean | undefined | undefined;
427
+ accessibilityViewIsModal?: boolean | undefined | undefined;
428
+ onAccessibilityEscape?: (() => void) | undefined | undefined;
429
+ onAccessibilityTap?: (() => void) | undefined | undefined;
430
+ onMagicTap?: (() => void) | undefined | undefined;
431
+ accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
432
+ accessibilityLanguage?: string | undefined | undefined;
433
+ accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
434
+ accessibilityLargeContentTitle?: string | undefined | undefined;
435
+ accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
436
+ onPress?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
437
+ onHoverIn?: null | ((event: import("react-native").MouseEvent) => void) | undefined | undefined;
438
+ onHoverOut?: null | ((event: import("react-native").MouseEvent) => void) | undefined | undefined;
439
+ onPressIn?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
440
+ onPressOut?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
441
+ onLongPress?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
442
+ cancelable?: null | boolean | undefined | undefined;
443
+ delayHoverIn?: number | null | undefined | undefined;
444
+ delayHoverOut?: number | null | undefined | undefined;
445
+ delayLongPress?: null | number | undefined | undefined;
446
+ disabled?: null | boolean | undefined | undefined;
447
+ pressRetentionOffset?: number | import("react-native").Insets | null | undefined;
448
+ android_disableSound?: null | boolean | undefined | undefined;
449
+ android_ripple?: import("react-native").PressableAndroidRippleConfig | null | undefined;
450
+ testOnly_pressed?: null | boolean | undefined | undefined;
451
+ unstable_pressDelay?: number | undefined | undefined;
452
+ }>> | undefined;
453
+ } & {
454
+ sharedTransitionTag?: string;
455
+ sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
672
456
  } & {
673
457
  styleId?: string;
674
458
  sharedBoundTag?: string;
@@ -752,14 +536,14 @@ declare const _default: {
752
536
  'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
753
537
  'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
754
538
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
755
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
539
+ importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
756
540
  'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
757
541
  'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
758
542
  role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
759
543
  accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
760
544
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
761
545
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
762
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
546
+ 'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
763
547
  screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
764
548
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
765
549
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -771,18 +555,24 @@ declare const _default: {
771
555
  accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
772
556
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
773
557
  accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
774
- 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;
775
- 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;
776
- 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;
777
- onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
778
- scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
558
+ keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
559
+ fadingEdgeLength?: number | {
560
+ start: number;
561
+ end: number;
562
+ } | import("react-native-reanimated").SharedValue<number | {
563
+ start: number;
564
+ end: number;
565
+ } | undefined> | undefined;
779
566
  innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
780
567
  scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
781
568
  decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
782
569
  invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
783
570
  keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
784
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
571
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
572
+ 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;
785
573
  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;
574
+ 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;
575
+ 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;
786
576
  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;
787
577
  pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
788
578
  scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -822,6 +612,7 @@ declare const _default: {
822
612
  minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
823
613
  onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
824
614
  pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
615
+ scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
825
616
  scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
826
617
  scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
827
618
  scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -832,13 +623,6 @@ declare const _default: {
832
623
  scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
833
624
  overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
834
625
  nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
835
- fadingEdgeLength?: number | {
836
- start: number;
837
- end: number;
838
- } | import("react-native-reanimated").SharedValue<number | {
839
- start: number;
840
- end: number;
841
- } | undefined> | undefined;
842
626
  persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
843
627
  } & {
844
628
  style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
@@ -849,181 +633,167 @@ declare const _default: {
849
633
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
850
634
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
851
635
  } & {
852
- animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
853
- horizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
854
- id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
855
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
856
- children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
857
- hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
858
- needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
859
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
860
- removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
861
- testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
862
- nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
863
- collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
864
- collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
865
- onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
866
- onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
867
- renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
868
- focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
869
- tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
870
- shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
871
- isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
872
- hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
873
- tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
874
- tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
875
- tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
876
- tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
877
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
878
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
879
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
880
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
881
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
882
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
883
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
884
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
885
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
886
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
887
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
888
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
889
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
890
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
891
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
892
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
893
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
894
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
895
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
896
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
897
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
898
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
899
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
900
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
901
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
902
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
903
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
904
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
905
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
906
- accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
636
+ animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
637
+ horizontal?: boolean | null | undefined | undefined;
638
+ id?: string | undefined | undefined;
639
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
640
+ children?: import("react").ReactNode;
641
+ hitSlop?: number | import("react-native").Insets | null | undefined;
642
+ needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
643
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
644
+ removeClippedSubviews?: boolean | undefined | undefined;
645
+ testID?: string | undefined | undefined;
646
+ nativeID?: string | undefined | undefined;
647
+ collapsable?: boolean | undefined | undefined;
648
+ collapsableChildren?: boolean | undefined | undefined;
649
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | null | undefined | undefined;
650
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | null | undefined | undefined;
651
+ renderToHardwareTextureAndroid?: boolean | undefined | undefined;
652
+ focusable?: boolean | undefined | undefined;
653
+ tabIndex?: 0 | -1 | undefined | undefined;
654
+ shouldRasterizeIOS?: boolean | undefined | undefined;
655
+ isTVSelectable?: boolean | undefined | undefined;
656
+ hasTVPreferredFocus?: boolean | undefined | undefined;
657
+ tvParallaxShiftDistanceX?: number | undefined | undefined;
658
+ tvParallaxShiftDistanceY?: number | undefined | undefined;
659
+ tvParallaxTiltAngle?: number | undefined | undefined;
660
+ tvParallaxMagnification?: number | undefined | undefined;
661
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
662
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
663
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
664
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
665
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
666
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
667
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
668
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
669
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
670
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
671
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
672
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
673
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
674
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
675
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
676
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
677
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
678
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
679
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
680
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
681
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
682
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
683
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
684
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
685
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
686
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
687
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
688
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
689
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
690
+ accessible?: boolean | undefined | undefined;
907
691
  accessibilityActions?: readonly Readonly<{
908
692
  name: import("react-native").AccessibilityActionName | string;
909
693
  label?: string | undefined;
910
- }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
911
- name: import("react-native").AccessibilityActionName | string;
912
- label?: string | undefined;
913
- }>[] | undefined> | undefined;
914
- accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
915
- 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
916
- accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
917
- accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
918
- 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
919
- 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
920
- 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
921
- 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
922
- 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
923
- accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
924
- accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
925
- 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
926
- 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
927
- 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
928
- 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
929
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
930
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
931
- 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
932
- 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
933
- role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
934
- accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
935
- 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
936
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
937
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
938
- screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
939
- accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
940
- accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
941
- onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
942
- onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
943
- onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
944
- accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
945
- accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
946
- accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
947
- accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
948
- accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
949
- 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;
950
- 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;
951
- 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;
952
- onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
953
- scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
954
- innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
955
- scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
956
- decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
957
- invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
958
- keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
959
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
960
- 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;
961
- 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;
962
- pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
963
- scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
964
- showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
965
- showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
966
- stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
967
- 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;
968
- snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
969
- snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
970
- snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
971
- snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
972
- stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
973
- disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
974
- disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
975
- StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
976
- alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
977
- alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
978
- automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
979
- automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
980
- automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
981
- bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
982
- bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
983
- canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
984
- centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
985
- contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
986
- contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
987
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
988
- directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
989
- maintainVisibleContentPosition?: {
990
- autoscrollToTopThreshold?: number | null | undefined;
991
- minIndexForVisible: number;
992
- } | import("react-native-reanimated").SharedValue<{
993
- autoscrollToTopThreshold?: number | null | undefined;
994
- minIndexForVisible: number;
995
- } | null | undefined> | null | undefined;
996
- maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
997
- minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
998
- onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
999
- pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1000
- scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1001
- scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1002
- scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1003
- snapToAlignment?: "center" | "end" | "start" | import("react-native-reanimated").SharedValue<"center" | "end" | "start" | undefined> | undefined;
1004
- 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;
1005
- zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1006
- endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
1007
- scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1008
- overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
1009
- nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
694
+ }>[] | undefined;
695
+ accessibilityLabel?: string | undefined | undefined;
696
+ 'aria-label'?: string | undefined | undefined;
697
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
698
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
699
+ 'aria-busy'?: boolean | undefined | undefined;
700
+ 'aria-checked'?: boolean | "mixed" | undefined | undefined;
701
+ 'aria-disabled'?: boolean | undefined | undefined;
702
+ 'aria-expanded'?: boolean | undefined | undefined;
703
+ 'aria-selected'?: boolean | undefined | undefined;
704
+ accessibilityHint?: string | undefined | undefined;
705
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
706
+ 'aria-valuemax'?: number | undefined;
707
+ 'aria-valuemin'?: number | undefined;
708
+ 'aria-valuenow'?: number | undefined;
709
+ 'aria-valuetext'?: string | undefined;
710
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
711
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
712
+ 'aria-hidden'?: boolean | undefined | undefined;
713
+ 'aria-modal'?: boolean | undefined | undefined;
714
+ role?: import("react-native").Role | undefined;
715
+ accessibilityLabelledBy?: string | string[] | undefined | undefined;
716
+ 'aria-labelledby'?: string | undefined | undefined;
717
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
718
+ 'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
719
+ screenReaderFocusable?: boolean | undefined | undefined;
720
+ accessibilityElementsHidden?: boolean | undefined | undefined;
721
+ accessibilityViewIsModal?: boolean | undefined | undefined;
722
+ onAccessibilityEscape?: (() => void) | undefined | undefined;
723
+ onAccessibilityTap?: (() => void) | undefined | undefined;
724
+ onMagicTap?: (() => void) | undefined | undefined;
725
+ accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
726
+ accessibilityLanguage?: string | undefined | undefined;
727
+ accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
728
+ accessibilityLargeContentTitle?: string | undefined | undefined;
729
+ accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
730
+ keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | undefined | undefined;
1010
731
  fadingEdgeLength?: number | {
1011
732
  start: number;
1012
733
  end: number;
1013
- } | import("react-native-reanimated").SharedValue<number | {
1014
- start: number;
1015
- end: number;
1016
- } | undefined> | undefined;
1017
- persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1018
- } & {
1019
- style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1020
- contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1021
- indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
1022
- } & {
1023
- layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
1024
- entering?: import("react-native-reanimated").EntryOrExitLayoutType;
1025
- exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
1026
- }> | import("react-native-reanimated").CSSStyle<import("react-native").ScrollViewProps>> | undefined;
734
+ } | undefined | undefined;
735
+ innerViewRef?: import("react").RefObject<View> | undefined;
736
+ scrollViewRef?: import("react").RefObject<ScrollView> | undefined;
737
+ decelerationRate?: "fast" | "normal" | number | undefined | undefined;
738
+ invertStickyHeaders?: boolean | undefined | undefined;
739
+ keyboardDismissMode?: "none" | "interactive" | "on-drag" | undefined | undefined;
740
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | undefined | undefined;
741
+ onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
742
+ onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
743
+ onScrollEndDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
744
+ onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
745
+ onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
746
+ pagingEnabled?: boolean | undefined | undefined;
747
+ scrollEnabled?: boolean | undefined | undefined;
748
+ showsHorizontalScrollIndicator?: boolean | undefined | undefined;
749
+ showsVerticalScrollIndicator?: boolean | undefined | undefined;
750
+ stickyHeaderHiddenOnScroll?: boolean | undefined | undefined;
751
+ refreshControl?: import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | undefined;
752
+ snapToInterval?: number | undefined | undefined;
753
+ snapToOffsets?: number[] | undefined | undefined;
754
+ snapToStart?: boolean | undefined | undefined;
755
+ snapToEnd?: boolean | undefined | undefined;
756
+ stickyHeaderIndices?: number[] | undefined | undefined;
757
+ disableIntervalMomentum?: boolean | undefined | undefined;
758
+ disableScrollViewPanResponder?: boolean | undefined | undefined;
759
+ StickyHeaderComponent?: import("react").ComponentType<any> | undefined;
760
+ alwaysBounceHorizontal?: boolean | undefined | undefined;
761
+ alwaysBounceVertical?: boolean | undefined | undefined;
762
+ automaticallyAdjustContentInsets?: boolean | undefined | undefined;
763
+ automaticallyAdjustKeyboardInsets?: boolean | undefined | undefined;
764
+ automaticallyAdjustsScrollIndicatorInsets?: boolean | undefined | undefined;
765
+ bounces?: boolean | undefined | undefined;
766
+ bouncesZoom?: boolean | undefined | undefined;
767
+ canCancelContentTouches?: boolean | undefined | undefined;
768
+ centerContent?: boolean | undefined | undefined;
769
+ contentInset?: import("react-native").Insets | undefined;
770
+ contentOffset?: import("react-native").PointProp | undefined;
771
+ contentInsetAdjustmentBehavior?: "automatic" | "scrollableAxes" | "never" | "always" | undefined | undefined;
772
+ directionalLockEnabled?: boolean | undefined | undefined;
773
+ maintainVisibleContentPosition?: null | {
774
+ autoscrollToTopThreshold?: number | null | undefined;
775
+ minIndexForVisible: number;
776
+ } | undefined | undefined;
777
+ maximumZoomScale?: number | undefined | undefined;
778
+ minimumZoomScale?: number | undefined | undefined;
779
+ onScrollAnimationEnd?: (() => void) | undefined | undefined;
780
+ pinchGestureEnabled?: boolean | undefined | undefined;
781
+ scrollEventThrottle?: number | undefined | undefined;
782
+ scrollIndicatorInsets?: import("react-native").Insets | undefined;
783
+ scrollToOverflowEnabled?: boolean | undefined | undefined;
784
+ scrollsToTop?: boolean | undefined | undefined;
785
+ snapToAlignment?: "start" | "center" | "end" | undefined | undefined;
786
+ onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
787
+ zoomScale?: number | undefined | undefined;
788
+ endFillColor?: import("react-native").ColorValue | undefined;
789
+ scrollPerfTag?: string | undefined | undefined;
790
+ overScrollMode?: "auto" | "always" | "never" | undefined | undefined;
791
+ nestedScrollEnabled?: boolean | undefined | undefined;
792
+ persistentScrollbar?: boolean | undefined | undefined;
793
+ }>> | undefined;
794
+ } & {
795
+ sharedTransitionTag?: string;
796
+ sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
1027
797
  } & {
1028
798
  styleId?: string;
1029
799
  sharedBoundTag?: string;
@@ -1034,6 +804,7 @@ declare const _default: {
1034
804
  id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1035
805
  pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
1036
806
  children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
807
+ data: ArrayLike<unknown> | import("react-native-reanimated").SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
1037
808
  hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
1038
809
  needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1039
810
  onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
@@ -1107,14 +878,14 @@ declare const _default: {
1107
878
  'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1108
879
  'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1109
880
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
1110
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
881
+ importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
1111
882
  'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1112
883
  'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1113
884
  role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
1114
885
  accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
1115
886
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1116
887
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
1117
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
888
+ 'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
1118
889
  screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1119
890
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1120
891
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -1126,76 +897,7 @@ declare const _default: {
1126
897
  accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1127
898
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1128
899
  accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1129
- data: ArrayLike<unknown> | import("react-native-reanimated").SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
1130
- 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;
1131
- 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;
1132
- 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;
1133
- onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
1134
- scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1135
- innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
1136
- scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
1137
- decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
1138
- invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1139
- keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
1140
900
  keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
1141
- 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;
1142
- 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;
1143
- pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1144
- scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1145
- showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1146
- showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1147
- stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1148
- 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;
1149
- snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1150
- snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
1151
- snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1152
- snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1153
- stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
1154
- disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1155
- disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1156
- StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
1157
- alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1158
- alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1159
- automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1160
- automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1161
- automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1162
- bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1163
- bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1164
- canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1165
- centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1166
- contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1167
- contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
1168
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
1169
- directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1170
- maintainVisibleContentPosition?: {
1171
- autoscrollToTopThreshold?: number | null | undefined;
1172
- minIndexForVisible: number;
1173
- } | import("react-native-reanimated").SharedValue<{
1174
- autoscrollToTopThreshold?: number | null | undefined;
1175
- minIndexForVisible: number;
1176
- } | null | undefined> | null | undefined;
1177
- maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1178
- minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1179
- onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1180
- pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1181
- scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1182
- scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1183
- scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1184
- snapToAlignment?: "center" | "end" | "start" | import("react-native-reanimated").SharedValue<"center" | "end" | "start" | undefined> | undefined;
1185
- 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;
1186
- zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1187
- endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
1188
- scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1189
- overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
1190
- nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1191
- fadingEdgeLength?: number | {
1192
- start: number;
1193
- end: number;
1194
- } | import("react-native-reanimated").SharedValue<number | {
1195
- start: number;
1196
- end: number;
1197
- } | undefined> | undefined;
1198
- persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1199
901
  extraData?: any | undefined;
1200
902
  getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
1201
903
  length: number;
@@ -1222,7 +924,14 @@ declare const _default: {
1222
924
  refreshing?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
1223
925
  renderItem: import("react-native").ListRenderItem<unknown> | import("react-native-reanimated").SharedValue<import("react-native").ListRenderItem<unknown> | null | undefined> | null | undefined;
1224
926
  viewabilityConfig?: import("react-native").ViewabilityConfig | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfig | undefined> | undefined;
1225
- ItemSeparatorComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | null | undefined> | null | undefined;
927
+ fadingEdgeLength?: number | {
928
+ start: number;
929
+ end: number;
930
+ } | import("react-native-reanimated").SharedValue<number | {
931
+ start: number;
932
+ end: number;
933
+ } | undefined> | undefined;
934
+ ItemSeparatorComponent?: 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;
1226
935
  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;
1227
936
  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;
1228
937
  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;
@@ -1259,260 +968,289 @@ declare const _default: {
1259
968
  viewabilityConfigCallbackPairs?: import("react-native").ViewabilityConfigCallbackPairs | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfigCallbackPairs | undefined> | undefined;
1260
969
  windowSize?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1261
970
  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;
971
+ innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
972
+ scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
973
+ decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
974
+ invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
975
+ keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
976
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
977
+ 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;
978
+ 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;
979
+ 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;
980
+ 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;
981
+ 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;
982
+ pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
983
+ scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
984
+ showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
985
+ showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
986
+ stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
987
+ 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;
988
+ snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
989
+ snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
990
+ snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
991
+ snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
992
+ stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
993
+ disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
994
+ disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
995
+ StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
996
+ alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
997
+ alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
998
+ automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
999
+ automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1000
+ automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1001
+ bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1002
+ bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1003
+ canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1004
+ centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1005
+ contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1006
+ contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
1007
+ contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
1008
+ directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1009
+ maintainVisibleContentPosition?: {
1010
+ autoscrollToTopThreshold?: number | null | undefined;
1011
+ minIndexForVisible: number;
1012
+ } | import("react-native-reanimated").SharedValue<{
1013
+ autoscrollToTopThreshold?: number | null | undefined;
1014
+ minIndexForVisible: number;
1015
+ } | null | undefined> | null | undefined;
1016
+ maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1017
+ minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1018
+ onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1019
+ pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1020
+ scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1021
+ scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1022
+ scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1023
+ scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1024
+ snapToAlignment?: "center" | "end" | "start" | import("react-native-reanimated").SharedValue<"center" | "end" | "start" | undefined> | undefined;
1025
+ 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;
1026
+ zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1027
+ endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
1028
+ scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1029
+ overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
1030
+ nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1031
+ persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1262
1032
  } & {
1263
1033
  style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1264
- contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1265
- indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
1266
1034
  columnWrapperStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1267
1035
  ListFooterComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1268
1036
  ListHeaderComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1037
+ contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1038
+ indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
1269
1039
  } & {
1270
1040
  layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
1271
1041
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
1272
1042
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
1273
1043
  } & {
1274
- animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
1275
- horizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
1276
- id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1277
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
1278
- children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
1279
- hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
1280
- needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1281
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
1282
- removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1283
- testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1284
- nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1285
- collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1286
- collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1287
- onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
1288
- onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
1289
- renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1290
- focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1291
- tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
1292
- shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1293
- isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1294
- hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1295
- tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1296
- tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1297
- tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1298
- tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1299
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1300
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1301
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1302
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1303
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1304
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1305
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1306
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1307
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1308
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1309
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1310
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1311
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1312
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1313
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1314
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1315
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1316
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1317
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1318
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1319
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1320
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1321
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1322
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1323
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1324
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1325
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1326
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1327
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1328
- accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1044
+ animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
1045
+ horizontal?: boolean | null | undefined | undefined;
1046
+ id?: string | undefined | undefined;
1047
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
1048
+ children?: import("react").ReactNode;
1049
+ data?: ArrayLike<unknown> | null | undefined;
1050
+ hitSlop?: number | import("react-native").Insets | null | undefined;
1051
+ needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
1052
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
1053
+ removeClippedSubviews?: boolean | undefined | undefined;
1054
+ testID?: string | undefined | undefined;
1055
+ nativeID?: string | undefined | undefined;
1056
+ collapsable?: boolean | undefined | undefined;
1057
+ collapsableChildren?: boolean | undefined | undefined;
1058
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | null | undefined | undefined;
1059
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | null | undefined | undefined;
1060
+ renderToHardwareTextureAndroid?: boolean | undefined | undefined;
1061
+ focusable?: boolean | undefined | undefined;
1062
+ tabIndex?: 0 | -1 | undefined | undefined;
1063
+ shouldRasterizeIOS?: boolean | undefined | undefined;
1064
+ isTVSelectable?: boolean | undefined | undefined;
1065
+ hasTVPreferredFocus?: boolean | undefined | undefined;
1066
+ tvParallaxShiftDistanceX?: number | undefined | undefined;
1067
+ tvParallaxShiftDistanceY?: number | undefined | undefined;
1068
+ tvParallaxTiltAngle?: number | undefined | undefined;
1069
+ tvParallaxMagnification?: number | undefined | undefined;
1070
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1071
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1072
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1073
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1074
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1075
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1076
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1077
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1078
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1079
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1080
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1081
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1082
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1083
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1084
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1085
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1086
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1087
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1088
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1089
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1090
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1091
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1092
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1093
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1094
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1095
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1096
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1097
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1098
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1099
+ accessible?: boolean | undefined | undefined;
1329
1100
  accessibilityActions?: readonly Readonly<{
1330
1101
  name: import("react-native").AccessibilityActionName | string;
1331
1102
  label?: string | undefined;
1332
- }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
1333
- name: import("react-native").AccessibilityActionName | string;
1334
- label?: string | undefined;
1335
- }>[] | undefined> | undefined;
1336
- accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1337
- 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1338
- accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
1339
- accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
1340
- 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1341
- 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
1342
- 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1343
- 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1344
- 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1345
- accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1346
- accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
1347
- 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1348
- 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1349
- 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1350
- 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1351
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
1352
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
1353
- 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1354
- 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1355
- role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
1356
- accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
1357
- 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1358
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
1359
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
1360
- screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1361
- accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1362
- accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1363
- onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1364
- onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1365
- onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1366
- accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1367
- accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1368
- accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1369
- accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1370
- accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1371
- data: ArrayLike<unknown> | import("react-native-reanimated").SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
1372
- 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;
1373
- 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;
1374
- 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;
1375
- onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
1376
- scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1377
- innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
1378
- scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
1379
- decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
1380
- invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1381
- keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
1382
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
1383
- 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;
1384
- 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;
1385
- pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1386
- scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1387
- showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1388
- showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1389
- stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1390
- 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;
1391
- snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1392
- snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
1393
- snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1394
- snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1395
- stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
1396
- disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1397
- disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1398
- StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
1399
- alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1400
- alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1401
- automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1402
- automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1403
- automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1404
- bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1405
- bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1406
- canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1407
- centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1408
- contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1409
- contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
1410
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
1411
- directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1412
- maintainVisibleContentPosition?: {
1413
- autoscrollToTopThreshold?: number | null | undefined;
1414
- minIndexForVisible: number;
1415
- } | import("react-native-reanimated").SharedValue<{
1416
- autoscrollToTopThreshold?: number | null | undefined;
1417
- minIndexForVisible: number;
1418
- } | null | undefined> | null | undefined;
1419
- maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1420
- minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1421
- onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1422
- pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1423
- scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1424
- scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1425
- scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1426
- snapToAlignment?: "center" | "end" | "start" | import("react-native-reanimated").SharedValue<"center" | "end" | "start" | undefined> | undefined;
1427
- 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;
1428
- zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1429
- endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
1430
- scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1431
- overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
1432
- nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1433
- fadingEdgeLength?: number | {
1434
- start: number;
1435
- end: number;
1436
- } | import("react-native-reanimated").SharedValue<number | {
1437
- start: number;
1438
- end: number;
1439
- } | undefined> | undefined;
1440
- persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1103
+ }>[] | undefined;
1104
+ accessibilityLabel?: string | undefined | undefined;
1105
+ 'aria-label'?: string | undefined | undefined;
1106
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
1107
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
1108
+ 'aria-busy'?: boolean | undefined | undefined;
1109
+ 'aria-checked'?: boolean | "mixed" | undefined | undefined;
1110
+ 'aria-disabled'?: boolean | undefined | undefined;
1111
+ 'aria-expanded'?: boolean | undefined | undefined;
1112
+ 'aria-selected'?: boolean | undefined | undefined;
1113
+ accessibilityHint?: string | undefined | undefined;
1114
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1115
+ 'aria-valuemax'?: number | undefined;
1116
+ 'aria-valuemin'?: number | undefined;
1117
+ 'aria-valuenow'?: number | undefined;
1118
+ 'aria-valuetext'?: string | undefined;
1119
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
1120
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
1121
+ 'aria-hidden'?: boolean | undefined | undefined;
1122
+ 'aria-modal'?: boolean | undefined | undefined;
1123
+ role?: import("react-native").Role | undefined;
1124
+ accessibilityLabelledBy?: string | string[] | undefined | undefined;
1125
+ 'aria-labelledby'?: string | undefined | undefined;
1126
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
1127
+ 'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
1128
+ screenReaderFocusable?: boolean | undefined | undefined;
1129
+ accessibilityElementsHidden?: boolean | undefined | undefined;
1130
+ accessibilityViewIsModal?: boolean | undefined | undefined;
1131
+ onAccessibilityEscape?: (() => void) | undefined | undefined;
1132
+ onAccessibilityTap?: (() => void) | undefined | undefined;
1133
+ onMagicTap?: (() => void) | undefined | undefined;
1134
+ accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
1135
+ accessibilityLanguage?: string | undefined | undefined;
1136
+ accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
1137
+ accessibilityLargeContentTitle?: string | undefined | undefined;
1138
+ accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
1139
+ keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | undefined | undefined;
1441
1140
  extraData?: any | undefined;
1442
1141
  getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
1443
1142
  length: number;
1444
1143
  offset: number;
1445
1144
  index: number;
1446
- }) | import("react-native-reanimated").SharedValue<((data: ArrayLike<unknown> | null | undefined, index: number) => {
1447
- length: number;
1448
- offset: number;
1449
- index: number;
1450
- }) | undefined> | undefined;
1451
- initialNumToRender?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1452
- initialScrollIndex?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
1453
- keyExtractor?: ((item: unknown, index: number) => string) | import("react-native-reanimated").SharedValue<((item: unknown, index: number) => string) | undefined> | undefined;
1454
- legacyImplementation?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1455
- numColumns?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1456
- onRefresh?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | null | undefined> | null | undefined;
1145
+ }) | undefined;
1146
+ initialNumToRender?: number | undefined | undefined;
1147
+ initialScrollIndex?: number | null | undefined | undefined;
1148
+ keyExtractor?: ((item: unknown, index: number) => string) | undefined;
1149
+ legacyImplementation?: boolean | undefined | undefined;
1150
+ numColumns?: number | undefined | undefined;
1151
+ onRefresh?: (() => void) | null | undefined | undefined;
1457
1152
  onViewableItemsChanged?: ((info: {
1458
1153
  viewableItems: import("react-native").ViewToken<unknown>[];
1459
1154
  changed: import("react-native").ViewToken<unknown>[];
1460
- }) => void) | import("react-native-reanimated").SharedValue<((info: {
1461
- viewableItems: import("react-native").ViewToken<unknown>[];
1462
- changed: import("react-native").ViewToken<unknown>[];
1463
- }) => void) | null | undefined> | null | undefined;
1464
- refreshing?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
1465
- renderItem: import("react-native").ListRenderItem<unknown> | import("react-native-reanimated").SharedValue<import("react-native").ListRenderItem<unknown> | null | undefined> | null | undefined;
1466
- viewabilityConfig?: import("react-native").ViewabilityConfig | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfig | undefined> | undefined;
1467
- ItemSeparatorComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | null | undefined> | null | undefined;
1468
- 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;
1469
- 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;
1470
- 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;
1471
- debug?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1472
- disableVirtualization?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1473
- getItem?: ((data: any, index: number) => unknown) | import("react-native-reanimated").SharedValue<((data: any, index: number) => unknown) | undefined> | undefined;
1474
- getItemCount?: ((data: any) => number) | import("react-native-reanimated").SharedValue<((data: any) => number) | undefined> | undefined;
1475
- inverted?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
1476
- maxToRenderPerBatch?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1155
+ }) => void) | null | undefined;
1156
+ refreshing?: boolean | null | undefined | undefined;
1157
+ renderItem?: import("react-native").ListRenderItem<unknown> | null | undefined;
1158
+ viewabilityConfig?: import("react-native").ViewabilityConfig | undefined;
1159
+ fadingEdgeLength?: number | {
1160
+ start: number;
1161
+ end: number;
1162
+ } | undefined | undefined;
1163
+ ItemSeparatorComponent?: import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null | undefined;
1164
+ ListEmptyComponent?: import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null | undefined;
1165
+ ListFooterComponent?: import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null | undefined;
1166
+ ListHeaderComponent?: import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null | undefined;
1167
+ debug?: boolean | undefined | undefined;
1168
+ disableVirtualization?: boolean | undefined | undefined;
1169
+ getItem?: ((data: any, index: number) => unknown) | undefined;
1170
+ getItemCount?: ((data: any) => number) | undefined | undefined;
1171
+ inverted?: boolean | null | undefined | undefined;
1172
+ maxToRenderPerBatch?: number | undefined | undefined;
1477
1173
  onEndReached?: ((info: {
1478
1174
  distanceFromEnd: number;
1479
- }) => void) | import("react-native-reanimated").SharedValue<((info: {
1480
- distanceFromEnd: number;
1481
- }) => void) | null | undefined> | null | undefined;
1482
- onEndReachedThreshold?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
1175
+ }) => void) | null | undefined | undefined;
1176
+ onEndReachedThreshold?: number | null | undefined | undefined;
1483
1177
  onScrollToIndexFailed?: ((info: {
1484
1178
  index: number;
1485
1179
  highestMeasuredFrameIndex: number;
1486
1180
  averageItemLength: number;
1487
- }) => void) | import("react-native-reanimated").SharedValue<((info: {
1488
- index: number;
1489
- highestMeasuredFrameIndex: number;
1490
- averageItemLength: number;
1491
- }) => void) | undefined> | undefined;
1181
+ }) => void) | undefined | undefined;
1492
1182
  onStartReached?: ((info: {
1493
1183
  distanceFromStart: number;
1494
- }) => void) | import("react-native-reanimated").SharedValue<((info: {
1495
- distanceFromStart: number;
1496
- }) => void) | null | undefined> | null | undefined;
1497
- onStartReachedThreshold?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
1498
- progressViewOffset?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1499
- 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;
1500
- updateCellsBatchingPeriod?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1501
- viewabilityConfigCallbackPairs?: import("react-native").ViewabilityConfigCallbackPairs | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfigCallbackPairs | undefined> | undefined;
1502
- windowSize?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1503
- 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;
1504
- } & {
1505
- style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1506
- contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1507
- indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
1508
- columnWrapperStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1509
- ListFooterComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1510
- ListHeaderComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1511
- } & {
1512
- layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
1513
- entering?: import("react-native-reanimated").EntryOrExitLayoutType;
1514
- exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
1515
- }> | import("react-native-reanimated").CSSStyle<import("react-native").FlatListProps<unknown>>> | undefined;
1184
+ }) => void) | null | undefined | undefined;
1185
+ onStartReachedThreshold?: number | null | undefined | undefined;
1186
+ progressViewOffset?: number | undefined | undefined;
1187
+ renderScrollComponent?: ((props: import("react-native").ScrollViewProps) => React.ReactElement<import("react-native").ScrollViewProps>) | undefined | undefined;
1188
+ updateCellsBatchingPeriod?: number | undefined | undefined;
1189
+ viewabilityConfigCallbackPairs?: import("react-native").ViewabilityConfigCallbackPairs | undefined;
1190
+ windowSize?: number | undefined | undefined;
1191
+ CellRendererComponent?: import("react").ComponentType<import("react-native").CellRendererProps<unknown>> | null | undefined;
1192
+ innerViewRef?: import("react").RefObject<View> | undefined;
1193
+ scrollViewRef?: import("react").RefObject<ScrollView> | undefined;
1194
+ decelerationRate?: "fast" | "normal" | number | undefined | undefined;
1195
+ invertStickyHeaders?: boolean | undefined | undefined;
1196
+ keyboardDismissMode?: "none" | "interactive" | "on-drag" | undefined | undefined;
1197
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | undefined | undefined;
1198
+ onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1199
+ onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1200
+ onScrollEndDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1201
+ onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1202
+ onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1203
+ pagingEnabled?: boolean | undefined | undefined;
1204
+ scrollEnabled?: boolean | undefined | undefined;
1205
+ showsHorizontalScrollIndicator?: boolean | undefined | undefined;
1206
+ showsVerticalScrollIndicator?: boolean | undefined | undefined;
1207
+ stickyHeaderHiddenOnScroll?: boolean | undefined | undefined;
1208
+ refreshControl?: import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | undefined;
1209
+ snapToInterval?: number | undefined | undefined;
1210
+ snapToOffsets?: number[] | undefined | undefined;
1211
+ snapToStart?: boolean | undefined | undefined;
1212
+ snapToEnd?: boolean | undefined | undefined;
1213
+ stickyHeaderIndices?: number[] | undefined | undefined;
1214
+ disableIntervalMomentum?: boolean | undefined | undefined;
1215
+ disableScrollViewPanResponder?: boolean | undefined | undefined;
1216
+ StickyHeaderComponent?: import("react").ComponentType<any> | undefined;
1217
+ alwaysBounceHorizontal?: boolean | undefined | undefined;
1218
+ alwaysBounceVertical?: boolean | undefined | undefined;
1219
+ automaticallyAdjustContentInsets?: boolean | undefined | undefined;
1220
+ automaticallyAdjustKeyboardInsets?: boolean | undefined | undefined;
1221
+ automaticallyAdjustsScrollIndicatorInsets?: boolean | undefined | undefined;
1222
+ bounces?: boolean | undefined | undefined;
1223
+ bouncesZoom?: boolean | undefined | undefined;
1224
+ canCancelContentTouches?: boolean | undefined | undefined;
1225
+ centerContent?: boolean | undefined | undefined;
1226
+ contentInset?: import("react-native").Insets | undefined;
1227
+ contentOffset?: import("react-native").PointProp | undefined;
1228
+ contentInsetAdjustmentBehavior?: "automatic" | "scrollableAxes" | "never" | "always" | undefined | undefined;
1229
+ directionalLockEnabled?: boolean | undefined | undefined;
1230
+ maintainVisibleContentPosition?: null | {
1231
+ autoscrollToTopThreshold?: number | null | undefined;
1232
+ minIndexForVisible: number;
1233
+ } | undefined | undefined;
1234
+ maximumZoomScale?: number | undefined | undefined;
1235
+ minimumZoomScale?: number | undefined | undefined;
1236
+ onScrollAnimationEnd?: (() => void) | undefined | undefined;
1237
+ pinchGestureEnabled?: boolean | undefined | undefined;
1238
+ scrollEventThrottle?: number | undefined | undefined;
1239
+ scrollIndicatorInsets?: import("react-native").Insets | undefined;
1240
+ scrollToOverflowEnabled?: boolean | undefined | undefined;
1241
+ scrollsToTop?: boolean | undefined | undefined;
1242
+ snapToAlignment?: "start" | "center" | "end" | undefined | undefined;
1243
+ onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1244
+ zoomScale?: number | undefined | undefined;
1245
+ endFillColor?: import("react-native").ColorValue | undefined;
1246
+ scrollPerfTag?: string | undefined | undefined;
1247
+ overScrollMode?: "auto" | "always" | "never" | undefined | undefined;
1248
+ nestedScrollEnabled?: boolean | undefined | undefined;
1249
+ persistentScrollbar?: boolean | undefined | undefined;
1250
+ }>> | undefined;
1251
+ } & {
1252
+ sharedTransitionTag?: string;
1253
+ sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
1516
1254
  } & {
1517
1255
  styleId?: string;
1518
1256
  sharedBoundTag?: string;