react-native-screen-transitions 3.13.0-beta.1 → 3.13.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 (32) hide show
  1. package/README.md +14 -0
  2. package/lib/commonjs/shared/components/boundary/create-boundary-component.js +5 -1
  3. package/lib/commonjs/shared/components/boundary/create-boundary-component.js.map +1 -1
  4. package/lib/commonjs/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js +8 -0
  5. package/lib/commonjs/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js.map +1 -1
  6. package/lib/commonjs/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js +1 -0
  7. package/lib/commonjs/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js.map +1 -1
  8. package/lib/commonjs/shared/components/boundary/portal/teleport.js +1 -13
  9. package/lib/commonjs/shared/components/boundary/portal/teleport.js.map +1 -1
  10. package/lib/module/shared/components/boundary/create-boundary-component.js +6 -2
  11. package/lib/module/shared/components/boundary/create-boundary-component.js.map +1 -1
  12. package/lib/module/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js +8 -0
  13. package/lib/module/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js.map +1 -1
  14. package/lib/module/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js +1 -0
  15. package/lib/module/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js.map +1 -1
  16. package/lib/module/shared/components/boundary/portal/teleport.js +1 -14
  17. package/lib/module/shared/components/boundary/portal/teleport.js.map +1 -1
  18. package/lib/typescript/shared/components/boundary/create-boundary-component.d.ts.map +1 -1
  19. package/lib/typescript/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.d.ts +2 -1
  20. package/lib/typescript/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.d.ts.map +1 -1
  21. package/lib/typescript/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.d.ts.map +1 -1
  22. package/lib/typescript/shared/components/boundary/portal/teleport.d.ts +1 -1
  23. package/lib/typescript/shared/components/boundary/portal/teleport.d.ts.map +1 -1
  24. package/lib/typescript/shared/components/create-transition-aware-component.d.ts +5 -6
  25. package/lib/typescript/shared/components/create-transition-aware-component.d.ts.map +1 -1
  26. package/lib/typescript/shared/index.d.ts +645 -703
  27. package/lib/typescript/shared/index.d.ts.map +1 -1
  28. package/package.json +2 -2
  29. package/src/shared/components/boundary/create-boundary-component.tsx +10 -2
  30. package/src/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.ts +22 -0
  31. package/src/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.ts +1 -0
  32. package/src/shared/components/boundary/portal/teleport.ts +2 -23
@@ -85,14 +85,14 @@ declare const _default: {
85
85
  'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
86
86
  'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
87
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;
88
+ importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
89
89
  'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
90
90
  'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
91
91
  role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
92
92
  accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
93
93
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
94
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;
95
+ 'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
96
96
  screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
97
97
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
98
98
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -111,109 +111,103 @@ declare const _default: {
111
111
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
112
112
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
113
113
  } & {
114
- animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
115
- children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
116
- hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
117
- id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
118
- needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
119
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
120
- pointerEvents?: "none" | "auto" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"none" | "auto" | "box-none" | "box-only" | 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;
114
+ animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
115
+ children?: import("react").ReactNode;
116
+ hitSlop?: number | import("react-native").Insets | null | undefined;
117
+ id?: string | undefined | undefined;
118
+ needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
119
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
120
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
121
+ removeClippedSubviews?: boolean | undefined | undefined;
122
+ testID?: string | undefined | undefined;
123
+ nativeID?: string | undefined | undefined;
124
+ collapsable?: boolean | undefined | undefined;
125
+ collapsableChildren?: boolean | undefined | undefined;
126
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | null | undefined | undefined;
127
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | null | undefined | undefined;
128
+ renderToHardwareTextureAndroid?: boolean | undefined | undefined;
129
+ focusable?: boolean | undefined | undefined;
130
+ tabIndex?: 0 | -1 | undefined | undefined;
131
+ shouldRasterizeIOS?: boolean | undefined | undefined;
132
+ isTVSelectable?: boolean | undefined | undefined;
133
+ hasTVPreferredFocus?: boolean | undefined | undefined;
134
+ tvParallaxShiftDistanceX?: number | undefined | undefined;
135
+ tvParallaxShiftDistanceY?: number | undefined | undefined;
136
+ tvParallaxTiltAngle?: number | undefined | undefined;
137
+ tvParallaxMagnification?: number | undefined | undefined;
138
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
139
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
140
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
141
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
142
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
143
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
144
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
145
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
146
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
147
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
148
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
149
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
150
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
151
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
152
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
153
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
154
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
155
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
156
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
157
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
158
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
159
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
160
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
161
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
162
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
163
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
164
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
165
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
166
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
167
+ accessible?: boolean | undefined | undefined;
168
168
  accessibilityActions?: readonly Readonly<{
169
169
  name: import("react-native").AccessibilityActionName | string;
170
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;
171
+ }>[] | undefined;
172
+ accessibilityLabel?: string | undefined | undefined;
173
+ 'aria-label'?: string | undefined | undefined;
174
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
175
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
176
+ 'aria-busy'?: boolean | undefined | undefined;
177
+ 'aria-checked'?: boolean | "mixed" | undefined | undefined;
178
+ 'aria-disabled'?: boolean | undefined | undefined;
179
+ 'aria-expanded'?: boolean | undefined | undefined;
180
+ 'aria-selected'?: boolean | undefined | undefined;
181
+ accessibilityHint?: string | undefined | undefined;
182
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
183
+ 'aria-valuemax'?: number | undefined;
184
+ 'aria-valuemin'?: number | undefined;
185
+ 'aria-valuenow'?: number | undefined;
186
+ 'aria-valuetext'?: string | undefined;
187
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
188
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
189
+ 'aria-hidden'?: boolean | undefined | undefined;
190
+ 'aria-modal'?: boolean | undefined | undefined;
191
+ role?: import("react-native").Role | undefined;
192
+ accessibilityLabelledBy?: string | string[] | undefined | undefined;
193
+ 'aria-labelledby'?: string | undefined | undefined;
194
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
195
+ 'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
196
+ screenReaderFocusable?: boolean | undefined | undefined;
197
+ accessibilityElementsHidden?: boolean | undefined | undefined;
198
+ accessibilityViewIsModal?: boolean | undefined | undefined;
199
+ onAccessibilityEscape?: (() => void) | undefined | undefined;
200
+ onAccessibilityTap?: (() => void) | undefined | undefined;
201
+ onMagicTap?: (() => void) | undefined | undefined;
202
+ accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
203
+ accessibilityLanguage?: string | undefined | undefined;
204
+ accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
205
+ accessibilityLargeContentTitle?: string | undefined | undefined;
206
+ accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
207
+ }>> | undefined;
208
+ } & {
209
+ sharedTransitionTag?: string;
210
+ sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
217
211
  } & {
218
212
  styleId?: string;
219
213
  } & import("react").RefAttributes<never>>>;
@@ -294,14 +288,14 @@ declare const _default: {
294
288
  'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
295
289
  'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
296
290
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
297
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
291
+ importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
298
292
  'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
299
293
  'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
300
294
  role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
301
295
  accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
302
296
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
303
297
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
304
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
298
+ 'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
305
299
  screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
306
300
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
307
301
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -315,8 +309,8 @@ declare const _default: {
315
309
  accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
316
310
  key?: import("react").Key | import("react-native-reanimated").SharedValue<import("react").Key | null | undefined> | null | undefined;
317
311
  ref?: import("react").Ref<View> | import("react-native-reanimated").SharedValue<import("react").Ref<View> | undefined> | undefined;
318
- onPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
319
312
  disabled?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
313
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
320
314
  onHoverIn?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
321
315
  onHoverOut?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
322
316
  onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
@@ -338,127 +332,121 @@ declare const _default: {
338
332
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
339
333
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
340
334
  } & {
341
- animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
342
- children?: import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => import("react").ReactNode) | import("react-native-reanimated").SharedValue<import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => import("react").ReactNode)>;
343
- hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
344
- id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
345
- needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
346
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
347
- pointerEvents?: "none" | "auto" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"none" | "auto" | "box-none" | "box-only" | undefined> | undefined;
348
- removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
349
- testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
350
- nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
351
- collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
352
- collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
353
- 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;
354
- 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;
355
- renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
356
- focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
357
- tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
358
- shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
359
- isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
360
- hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
361
- tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
362
- tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
363
- tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
364
- tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
365
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
366
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
367
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
368
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
369
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
370
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
371
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
372
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
373
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
374
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
375
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
376
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
377
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
378
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
379
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
380
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
381
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
382
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
383
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
384
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
385
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
386
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
387
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
388
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
389
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
390
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
391
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
392
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
393
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
394
- accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
335
+ animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
336
+ children?: import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => import("react").ReactNode);
337
+ hitSlop?: number | import("react-native").Insets | null | undefined;
338
+ id?: string | undefined | undefined;
339
+ needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
340
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
341
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
342
+ removeClippedSubviews?: boolean | undefined | undefined;
343
+ testID?: string | undefined | undefined;
344
+ nativeID?: string | undefined | undefined;
345
+ collapsable?: boolean | undefined | undefined;
346
+ collapsableChildren?: boolean | undefined | undefined;
347
+ onBlur?: null | ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | undefined | undefined;
348
+ onFocus?: null | ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | undefined | undefined;
349
+ renderToHardwareTextureAndroid?: boolean | undefined | undefined;
350
+ focusable?: boolean | undefined | undefined;
351
+ tabIndex?: 0 | -1 | undefined | undefined;
352
+ shouldRasterizeIOS?: boolean | undefined | undefined;
353
+ isTVSelectable?: boolean | undefined | undefined;
354
+ hasTVPreferredFocus?: boolean | undefined | undefined;
355
+ tvParallaxShiftDistanceX?: number | undefined | undefined;
356
+ tvParallaxShiftDistanceY?: number | undefined | undefined;
357
+ tvParallaxTiltAngle?: number | undefined | undefined;
358
+ tvParallaxMagnification?: number | undefined | undefined;
359
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
360
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
361
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
362
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
363
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
364
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
365
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
366
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
367
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
368
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
369
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
370
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
371
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
372
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
373
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
374
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
375
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
376
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
377
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
378
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
379
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
380
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
381
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
382
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
383
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
384
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
385
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
386
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
387
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
388
+ accessible?: boolean | undefined | undefined;
395
389
  accessibilityActions?: readonly Readonly<{
396
390
  name: import("react-native").AccessibilityActionName | string;
397
391
  label?: string | undefined;
398
- }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
399
- name: import("react-native").AccessibilityActionName | string;
400
- label?: string | undefined;
401
- }>[] | undefined> | undefined;
402
- accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
403
- 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
404
- accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
405
- accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
406
- 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
407
- 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
408
- 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
409
- 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
410
- 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
411
- accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
412
- accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
413
- 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
414
- 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
415
- 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
416
- 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
417
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
418
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
419
- 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
420
- 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
421
- role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
422
- accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
423
- 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
424
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
425
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
426
- screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
427
- accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
428
- accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
429
- onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
430
- onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
431
- onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
432
- accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
433
- accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
434
- accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
435
- accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
436
- accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
437
- key?: import("react").Key | import("react-native-reanimated").SharedValue<import("react").Key | null | undefined> | null | undefined;
438
- ref?: import("react").Ref<View> | import("react-native-reanimated").SharedValue<import("react").Ref<View> | undefined> | undefined;
439
- onPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
440
- disabled?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
441
- onHoverIn?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
442
- onHoverOut?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
443
- onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
444
- onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
445
- onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
446
- cancelable?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
447
- delayHoverIn?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
448
- delayHoverOut?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
449
- delayLongPress?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
450
- pressRetentionOffset?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
451
- android_disableSound?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
452
- android_ripple?: import("react-native").PressableAndroidRippleConfig | import("react-native-reanimated").SharedValue<import("react-native").PressableAndroidRippleConfig | null | undefined> | null | undefined;
453
- testOnly_pressed?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
454
- unstable_pressDelay?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
455
- } & {
456
- 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>)>>;
457
- } & {
458
- layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
459
- entering?: import("react-native-reanimated").EntryOrExitLayoutType;
460
- exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
461
- }> | import("react-native-reanimated").CSSStyle<import("react-native").PressableProps & import("react").RefAttributes<View>>> | undefined;
392
+ }>[] | undefined;
393
+ accessibilityLabel?: string | undefined | undefined;
394
+ 'aria-label'?: string | undefined | undefined;
395
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
396
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
397
+ 'aria-busy'?: boolean | undefined | undefined;
398
+ 'aria-checked'?: boolean | "mixed" | undefined | undefined;
399
+ 'aria-disabled'?: boolean | undefined | undefined;
400
+ 'aria-expanded'?: boolean | undefined | undefined;
401
+ 'aria-selected'?: boolean | undefined | undefined;
402
+ accessibilityHint?: string | undefined | undefined;
403
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
404
+ 'aria-valuemax'?: number | undefined;
405
+ 'aria-valuemin'?: number | undefined;
406
+ 'aria-valuenow'?: number | undefined;
407
+ 'aria-valuetext'?: string | undefined;
408
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
409
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
410
+ 'aria-hidden'?: boolean | undefined | undefined;
411
+ 'aria-modal'?: boolean | undefined | undefined;
412
+ role?: import("react-native").Role | undefined;
413
+ accessibilityLabelledBy?: string | string[] | undefined | undefined;
414
+ 'aria-labelledby'?: string | undefined | undefined;
415
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
416
+ 'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
417
+ screenReaderFocusable?: boolean | undefined | undefined;
418
+ accessibilityElementsHidden?: boolean | undefined | undefined;
419
+ accessibilityViewIsModal?: boolean | undefined | undefined;
420
+ onAccessibilityEscape?: (() => void) | undefined | undefined;
421
+ onAccessibilityTap?: (() => void) | undefined | undefined;
422
+ onMagicTap?: (() => void) | undefined | undefined;
423
+ accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
424
+ accessibilityLanguage?: string | undefined | undefined;
425
+ accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
426
+ accessibilityLargeContentTitle?: string | undefined | undefined;
427
+ accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
428
+ key?: import("react").Key | null | undefined;
429
+ ref?: import("react").Ref<View> | undefined;
430
+ disabled?: null | boolean | undefined | undefined;
431
+ onPress?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
432
+ onHoverIn?: null | ((event: import("react-native").MouseEvent) => void) | undefined | undefined;
433
+ onHoverOut?: null | ((event: import("react-native").MouseEvent) => void) | undefined | undefined;
434
+ onPressIn?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
435
+ onPressOut?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
436
+ onLongPress?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
437
+ cancelable?: null | boolean | undefined | undefined;
438
+ delayHoverIn?: number | null | undefined | undefined;
439
+ delayHoverOut?: number | null | undefined | undefined;
440
+ delayLongPress?: null | number | undefined | undefined;
441
+ pressRetentionOffset?: number | import("react-native").Insets | null | undefined;
442
+ android_disableSound?: null | boolean | undefined | undefined;
443
+ android_ripple?: import("react-native").PressableAndroidRippleConfig | null | undefined;
444
+ testOnly_pressed?: null | boolean | undefined | undefined;
445
+ unstable_pressDelay?: number | undefined | undefined;
446
+ }>> | undefined;
447
+ } & {
448
+ sharedTransitionTag?: string;
449
+ sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
462
450
  } & {
463
451
  styleId?: string;
464
452
  } & import("react").RefAttributes<never>>>;
@@ -540,14 +528,14 @@ declare const _default: {
540
528
  'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
541
529
  'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
542
530
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
543
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
531
+ importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
544
532
  'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
545
533
  'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
546
534
  role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
547
535
  accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
548
536
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
549
537
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
550
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
538
+ 'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
551
539
  screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
552
540
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
553
541
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -559,18 +547,24 @@ declare const _default: {
559
547
  accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
560
548
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
561
549
  accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
562
- 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;
563
- 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;
564
- 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;
565
- onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
566
- scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
550
+ keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
551
+ fadingEdgeLength?: number | {
552
+ start: number;
553
+ end: number;
554
+ } | import("react-native-reanimated").SharedValue<number | {
555
+ start: number;
556
+ end: number;
557
+ } | undefined> | undefined;
567
558
  innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
568
559
  scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
569
560
  decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
570
561
  invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
571
562
  keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
572
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
563
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
564
+ 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;
573
565
  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;
566
+ 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;
567
+ onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
574
568
  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;
575
569
  pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
576
570
  scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -610,6 +604,7 @@ declare const _default: {
610
604
  minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
611
605
  onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
612
606
  pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
607
+ scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
613
608
  scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
614
609
  scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
615
610
  scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -620,13 +615,6 @@ declare const _default: {
620
615
  scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
621
616
  overScrollMode?: "always" | "auto" | "never" | import("react-native-reanimated").SharedValue<"always" | "auto" | "never" | undefined> | undefined;
622
617
  nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
623
- fadingEdgeLength?: number | {
624
- start: number;
625
- end: number;
626
- } | import("react-native-reanimated").SharedValue<number | {
627
- start: number;
628
- end: number;
629
- } | undefined> | undefined;
630
618
  persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
631
619
  } & {
632
620
  style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
@@ -637,181 +625,167 @@ declare const _default: {
637
625
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
638
626
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
639
627
  } & {
640
- animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
641
- horizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
642
- children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
643
- hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
644
- id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
645
- needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
646
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
647
- pointerEvents?: "none" | "auto" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"none" | "auto" | "box-none" | "box-only" | undefined> | undefined;
648
- removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
649
- testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
650
- nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
651
- collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
652
- collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
653
- onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
654
- onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
655
- renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
656
- focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
657
- tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
658
- shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
659
- isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
660
- hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
661
- tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
662
- tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
663
- tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
664
- tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
665
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
666
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
667
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
668
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
669
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
670
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
671
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
672
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
673
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
674
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
675
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
676
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
677
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
678
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
679
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
680
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
681
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
682
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
683
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
684
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
685
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
686
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
687
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
688
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
689
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
690
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
691
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
692
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
693
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
694
- accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
628
+ animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
629
+ horizontal?: boolean | null | undefined | undefined;
630
+ children?: import("react").ReactNode;
631
+ hitSlop?: number | import("react-native").Insets | null | undefined;
632
+ id?: string | undefined | undefined;
633
+ needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
634
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
635
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
636
+ removeClippedSubviews?: boolean | undefined | undefined;
637
+ testID?: string | undefined | undefined;
638
+ nativeID?: string | undefined | undefined;
639
+ collapsable?: boolean | undefined | undefined;
640
+ collapsableChildren?: boolean | undefined | undefined;
641
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | null | undefined | undefined;
642
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | null | undefined | undefined;
643
+ renderToHardwareTextureAndroid?: boolean | undefined | undefined;
644
+ focusable?: boolean | undefined | undefined;
645
+ tabIndex?: 0 | -1 | undefined | undefined;
646
+ shouldRasterizeIOS?: boolean | undefined | undefined;
647
+ isTVSelectable?: boolean | undefined | undefined;
648
+ hasTVPreferredFocus?: boolean | undefined | undefined;
649
+ tvParallaxShiftDistanceX?: number | undefined | undefined;
650
+ tvParallaxShiftDistanceY?: number | undefined | undefined;
651
+ tvParallaxTiltAngle?: number | undefined | undefined;
652
+ tvParallaxMagnification?: number | undefined | undefined;
653
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
654
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
655
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
656
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
657
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
658
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
659
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
660
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
661
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
662
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
663
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
664
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
665
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
666
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
667
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
668
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
669
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
670
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
671
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
672
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
673
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
674
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
675
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
676
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
677
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
678
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
679
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
680
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
681
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
682
+ accessible?: boolean | undefined | undefined;
695
683
  accessibilityActions?: readonly Readonly<{
696
684
  name: import("react-native").AccessibilityActionName | string;
697
685
  label?: string | undefined;
698
- }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
699
- name: import("react-native").AccessibilityActionName | string;
700
- label?: string | undefined;
701
- }>[] | undefined> | undefined;
702
- accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
703
- 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
704
- accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
705
- accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
706
- 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
707
- 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
708
- 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
709
- 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
710
- 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
711
- accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
712
- accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
713
- 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
714
- 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
715
- 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
716
- 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
717
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
718
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
719
- 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
720
- 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
721
- role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
722
- accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
723
- 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
724
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
725
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
726
- screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
727
- accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
728
- accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
729
- onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
730
- onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
731
- onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
732
- accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
733
- accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
734
- accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
735
- accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
736
- accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
737
- 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;
738
- 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;
739
- 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;
740
- onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
741
- scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
742
- innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
743
- scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
744
- decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
745
- invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
746
- keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
747
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
748
- 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;
749
- 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;
750
- pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
751
- scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
752
- showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
753
- showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
754
- stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
755
- 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;
756
- snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
757
- snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
758
- snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
759
- snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
760
- stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
761
- disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
762
- disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
763
- StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
764
- alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
765
- alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
766
- automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
767
- automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
768
- automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
769
- bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
770
- bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
771
- canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
772
- centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
773
- contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
774
- contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
775
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
776
- directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
777
- maintainVisibleContentPosition?: {
778
- autoscrollToTopThreshold?: number | null | undefined;
779
- minIndexForVisible: number;
780
- } | import("react-native-reanimated").SharedValue<{
781
- autoscrollToTopThreshold?: number | null | undefined;
782
- minIndexForVisible: number;
783
- } | null | undefined> | null | undefined;
784
- maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
785
- minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
786
- onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
787
- pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
788
- scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
789
- scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
790
- scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
791
- snapToAlignment?: "end" | "start" | "center" | import("react-native-reanimated").SharedValue<"end" | "start" | "center" | undefined> | undefined;
792
- 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;
793
- zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
794
- endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
795
- scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
796
- overScrollMode?: "always" | "auto" | "never" | import("react-native-reanimated").SharedValue<"always" | "auto" | "never" | undefined> | undefined;
797
- nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
686
+ }>[] | undefined;
687
+ accessibilityLabel?: string | undefined | undefined;
688
+ 'aria-label'?: string | undefined | undefined;
689
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
690
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
691
+ 'aria-busy'?: boolean | undefined | undefined;
692
+ 'aria-checked'?: boolean | "mixed" | undefined | undefined;
693
+ 'aria-disabled'?: boolean | undefined | undefined;
694
+ 'aria-expanded'?: boolean | undefined | undefined;
695
+ 'aria-selected'?: boolean | undefined | undefined;
696
+ accessibilityHint?: string | undefined | undefined;
697
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
698
+ 'aria-valuemax'?: number | undefined;
699
+ 'aria-valuemin'?: number | undefined;
700
+ 'aria-valuenow'?: number | undefined;
701
+ 'aria-valuetext'?: string | undefined;
702
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
703
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
704
+ 'aria-hidden'?: boolean | undefined | undefined;
705
+ 'aria-modal'?: boolean | undefined | undefined;
706
+ role?: import("react-native").Role | undefined;
707
+ accessibilityLabelledBy?: string | string[] | undefined | undefined;
708
+ 'aria-labelledby'?: string | undefined | undefined;
709
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
710
+ 'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
711
+ screenReaderFocusable?: boolean | undefined | undefined;
712
+ accessibilityElementsHidden?: boolean | undefined | undefined;
713
+ accessibilityViewIsModal?: boolean | undefined | undefined;
714
+ onAccessibilityEscape?: (() => void) | undefined | undefined;
715
+ onAccessibilityTap?: (() => void) | undefined | undefined;
716
+ onMagicTap?: (() => void) | undefined | undefined;
717
+ accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
718
+ accessibilityLanguage?: string | undefined | undefined;
719
+ accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
720
+ accessibilityLargeContentTitle?: string | undefined | undefined;
721
+ accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
722
+ keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | undefined | undefined;
798
723
  fadingEdgeLength?: number | {
799
724
  start: number;
800
725
  end: number;
801
- } | import("react-native-reanimated").SharedValue<number | {
802
- start: number;
803
- end: number;
804
- } | undefined> | undefined;
805
- persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
806
- } & {
807
- style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
808
- contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
809
- indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
810
- } & {
811
- layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
812
- entering?: import("react-native-reanimated").EntryOrExitLayoutType;
813
- exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
814
- }> | import("react-native-reanimated").CSSStyle<import("react-native").ScrollViewProps>> | undefined;
726
+ } | undefined | undefined;
727
+ innerViewRef?: import("react").RefObject<View> | undefined;
728
+ scrollViewRef?: import("react").RefObject<ScrollView> | undefined;
729
+ decelerationRate?: "fast" | "normal" | number | undefined | undefined;
730
+ invertStickyHeaders?: boolean | undefined | undefined;
731
+ keyboardDismissMode?: "none" | "interactive" | "on-drag" | undefined | undefined;
732
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | undefined | undefined;
733
+ onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
734
+ onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
735
+ onScrollEndDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
736
+ onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
737
+ onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
738
+ pagingEnabled?: boolean | undefined | undefined;
739
+ scrollEnabled?: boolean | undefined | undefined;
740
+ showsHorizontalScrollIndicator?: boolean | undefined | undefined;
741
+ showsVerticalScrollIndicator?: boolean | undefined | undefined;
742
+ stickyHeaderHiddenOnScroll?: boolean | undefined | undefined;
743
+ refreshControl?: import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | undefined;
744
+ snapToInterval?: number | undefined | undefined;
745
+ snapToOffsets?: number[] | undefined | undefined;
746
+ snapToStart?: boolean | undefined | undefined;
747
+ snapToEnd?: boolean | undefined | undefined;
748
+ stickyHeaderIndices?: number[] | undefined | undefined;
749
+ disableIntervalMomentum?: boolean | undefined | undefined;
750
+ disableScrollViewPanResponder?: boolean | undefined | undefined;
751
+ StickyHeaderComponent?: import("react").ComponentType<any> | undefined;
752
+ alwaysBounceHorizontal?: boolean | undefined | undefined;
753
+ alwaysBounceVertical?: boolean | undefined | undefined;
754
+ automaticallyAdjustContentInsets?: boolean | undefined | undefined;
755
+ automaticallyAdjustKeyboardInsets?: boolean | undefined | undefined;
756
+ automaticallyAdjustsScrollIndicatorInsets?: boolean | undefined | undefined;
757
+ bounces?: boolean | undefined | undefined;
758
+ bouncesZoom?: boolean | undefined | undefined;
759
+ canCancelContentTouches?: boolean | undefined | undefined;
760
+ centerContent?: boolean | undefined | undefined;
761
+ contentInset?: import("react-native").Insets | undefined;
762
+ contentOffset?: import("react-native").PointProp | undefined;
763
+ contentInsetAdjustmentBehavior?: "automatic" | "scrollableAxes" | "never" | "always" | undefined | undefined;
764
+ directionalLockEnabled?: boolean | undefined | undefined;
765
+ maintainVisibleContentPosition?: null | {
766
+ autoscrollToTopThreshold?: number | null | undefined;
767
+ minIndexForVisible: number;
768
+ } | undefined | undefined;
769
+ maximumZoomScale?: number | undefined | undefined;
770
+ minimumZoomScale?: number | undefined | undefined;
771
+ onScrollAnimationEnd?: (() => void) | undefined | undefined;
772
+ pinchGestureEnabled?: boolean | undefined | undefined;
773
+ scrollEventThrottle?: number | undefined | undefined;
774
+ scrollIndicatorInsets?: import("react-native").Insets | undefined;
775
+ scrollToOverflowEnabled?: boolean | undefined | undefined;
776
+ scrollsToTop?: boolean | undefined | undefined;
777
+ snapToAlignment?: "start" | "center" | "end" | undefined | undefined;
778
+ onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
779
+ zoomScale?: number | undefined | undefined;
780
+ endFillColor?: import("react-native").ColorValue | undefined;
781
+ scrollPerfTag?: string | undefined | undefined;
782
+ overScrollMode?: "auto" | "always" | "never" | undefined | undefined;
783
+ nestedScrollEnabled?: boolean | undefined | undefined;
784
+ persistentScrollbar?: boolean | undefined | undefined;
785
+ }>> | undefined;
786
+ } & {
787
+ sharedTransitionTag?: string;
788
+ sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
815
789
  } & {
816
790
  styleId?: string;
817
791
  } & import("react").RefAttributes<never>>>;
@@ -893,14 +867,14 @@ declare const _default: {
893
867
  'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
894
868
  'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
895
869
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
896
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
870
+ importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
897
871
  'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
898
872
  'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
899
873
  role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
900
874
  accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
901
875
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
902
876
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
903
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
877
+ 'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
904
878
  screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
905
879
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
906
880
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -913,75 +887,7 @@ declare const _default: {
913
887
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
914
888
  accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
915
889
  data: ArrayLike<unknown> | import("react-native-reanimated").SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
916
- 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;
917
- 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;
918
- 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;
919
- onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
920
- scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
921
- innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
922
- scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
923
- decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
924
- invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
925
- keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
926
890
  keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
927
- 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;
928
- 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;
929
- pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
930
- scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
931
- showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
932
- showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
933
- stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
934
- 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;
935
- snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
936
- snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
937
- snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
938
- snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
939
- stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
940
- disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
941
- disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
942
- StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
943
- alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
944
- alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
945
- automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
946
- automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
947
- automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
948
- bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
949
- bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
950
- canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
951
- centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
952
- contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
953
- contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
954
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
955
- directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
956
- maintainVisibleContentPosition?: {
957
- autoscrollToTopThreshold?: number | null | undefined;
958
- minIndexForVisible: number;
959
- } | import("react-native-reanimated").SharedValue<{
960
- autoscrollToTopThreshold?: number | null | undefined;
961
- minIndexForVisible: number;
962
- } | null | undefined> | null | undefined;
963
- maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
964
- minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
965
- onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
966
- pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
967
- scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
968
- scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
969
- scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
970
- snapToAlignment?: "end" | "start" | "center" | import("react-native-reanimated").SharedValue<"end" | "start" | "center" | undefined> | undefined;
971
- 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;
972
- zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
973
- endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
974
- scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
975
- overScrollMode?: "always" | "auto" | "never" | import("react-native-reanimated").SharedValue<"always" | "auto" | "never" | undefined> | undefined;
976
- nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
977
- fadingEdgeLength?: number | {
978
- start: number;
979
- end: number;
980
- } | import("react-native-reanimated").SharedValue<number | {
981
- start: number;
982
- end: number;
983
- } | undefined> | undefined;
984
- persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
985
891
  extraData?: any | undefined;
986
892
  getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
987
893
  length: number;
@@ -1008,7 +914,14 @@ declare const _default: {
1008
914
  refreshing?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
1009
915
  renderItem: import("react-native").ListRenderItem<unknown> | import("react-native-reanimated").SharedValue<import("react-native").ListRenderItem<unknown> | null | undefined> | null | undefined;
1010
916
  viewabilityConfig?: import("react-native").ViewabilityConfig | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfig | undefined> | undefined;
1011
- ItemSeparatorComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | null | undefined> | null | undefined;
917
+ fadingEdgeLength?: number | {
918
+ start: number;
919
+ end: number;
920
+ } | import("react-native-reanimated").SharedValue<number | {
921
+ start: number;
922
+ end: number;
923
+ } | undefined> | undefined;
924
+ ItemSeparatorComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined> | null | undefined;
1012
925
  ListEmptyComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined> | null | undefined;
1013
926
  ListFooterComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined> | null | undefined;
1014
927
  ListHeaderComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined> | null | undefined;
@@ -1045,260 +958,289 @@ declare const _default: {
1045
958
  viewabilityConfigCallbackPairs?: import("react-native").ViewabilityConfigCallbackPairs | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfigCallbackPairs | undefined> | undefined;
1046
959
  windowSize?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1047
960
  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;
961
+ innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
962
+ scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
963
+ decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
964
+ invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
965
+ keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
966
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
967
+ 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;
968
+ 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;
969
+ 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;
970
+ 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;
971
+ 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;
972
+ pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
973
+ scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
974
+ showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
975
+ showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
976
+ stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
977
+ 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;
978
+ snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
979
+ snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
980
+ snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
981
+ snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
982
+ stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
983
+ disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
984
+ disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
985
+ StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
986
+ alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
987
+ alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
988
+ automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
989
+ automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
990
+ automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
991
+ bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
992
+ bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
993
+ canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
994
+ centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
995
+ contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
996
+ contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
997
+ contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
998
+ directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
999
+ maintainVisibleContentPosition?: {
1000
+ autoscrollToTopThreshold?: number | null | undefined;
1001
+ minIndexForVisible: number;
1002
+ } | import("react-native-reanimated").SharedValue<{
1003
+ autoscrollToTopThreshold?: number | null | undefined;
1004
+ minIndexForVisible: number;
1005
+ } | null | undefined> | null | undefined;
1006
+ maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1007
+ minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1008
+ onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1009
+ pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1010
+ scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1011
+ scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1012
+ scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1013
+ scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1014
+ snapToAlignment?: "end" | "start" | "center" | import("react-native-reanimated").SharedValue<"end" | "start" | "center" | undefined> | undefined;
1015
+ 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;
1016
+ zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1017
+ endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
1018
+ scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1019
+ overScrollMode?: "always" | "auto" | "never" | import("react-native-reanimated").SharedValue<"always" | "auto" | "never" | undefined> | undefined;
1020
+ nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1021
+ persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1048
1022
  } & {
1049
1023
  style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1050
- contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1051
- indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
1052
1024
  columnWrapperStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1053
1025
  ListFooterComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1054
1026
  ListHeaderComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1027
+ contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1028
+ indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
1055
1029
  } & {
1056
1030
  layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
1057
1031
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
1058
1032
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
1059
1033
  } & {
1060
- animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
1061
- horizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
1062
- children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
1063
- hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
1064
- id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1065
- needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1066
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
1067
- pointerEvents?: "none" | "auto" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"none" | "auto" | "box-none" | "box-only" | undefined> | undefined;
1068
- removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1069
- testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1070
- nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1071
- collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1072
- collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1073
- onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
1074
- onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
1075
- renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1076
- focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1077
- tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
1078
- shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1079
- isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1080
- hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1081
- tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1082
- tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1083
- tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1084
- tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1085
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1086
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1087
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1088
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1089
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1090
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1091
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1092
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1093
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1094
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1095
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1096
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
1097
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1098
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1099
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1100
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1101
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
1102
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1103
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1104
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1105
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1106
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1107
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1108
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1109
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1110
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1111
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1112
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1113
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
1114
- accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1034
+ animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
1035
+ horizontal?: boolean | null | undefined | undefined;
1036
+ children?: import("react").ReactNode;
1037
+ hitSlop?: number | import("react-native").Insets | null | undefined;
1038
+ id?: string | undefined | undefined;
1039
+ needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
1040
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
1041
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
1042
+ removeClippedSubviews?: boolean | undefined | undefined;
1043
+ testID?: string | undefined | undefined;
1044
+ nativeID?: string | undefined | undefined;
1045
+ collapsable?: boolean | undefined | undefined;
1046
+ collapsableChildren?: boolean | undefined | undefined;
1047
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | null | undefined | undefined;
1048
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | null | undefined | undefined;
1049
+ renderToHardwareTextureAndroid?: boolean | undefined | undefined;
1050
+ focusable?: boolean | undefined | undefined;
1051
+ tabIndex?: 0 | -1 | undefined | undefined;
1052
+ shouldRasterizeIOS?: boolean | undefined | undefined;
1053
+ isTVSelectable?: boolean | undefined | undefined;
1054
+ hasTVPreferredFocus?: boolean | undefined | undefined;
1055
+ tvParallaxShiftDistanceX?: number | undefined | undefined;
1056
+ tvParallaxShiftDistanceY?: number | undefined | undefined;
1057
+ tvParallaxTiltAngle?: number | undefined | undefined;
1058
+ tvParallaxMagnification?: number | undefined | undefined;
1059
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1060
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1061
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1062
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1063
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1064
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1065
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1066
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1067
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1068
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1069
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1070
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
1071
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1072
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1073
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1074
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1075
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
1076
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1077
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1078
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1079
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1080
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1081
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1082
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1083
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1084
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1085
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1086
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1087
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
1088
+ accessible?: boolean | undefined | undefined;
1115
1089
  accessibilityActions?: readonly Readonly<{
1116
1090
  name: import("react-native").AccessibilityActionName | string;
1117
1091
  label?: string | undefined;
1118
- }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
1119
- name: import("react-native").AccessibilityActionName | string;
1120
- label?: string | undefined;
1121
- }>[] | undefined> | undefined;
1122
- accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1123
- 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1124
- accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
1125
- accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
1126
- 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1127
- 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
1128
- 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1129
- 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1130
- 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1131
- accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1132
- accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
1133
- 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1134
- 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1135
- 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1136
- 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1137
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
1138
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
1139
- 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1140
- 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1141
- role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
1142
- accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
1143
- 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1144
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
1145
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
1146
- screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1147
- accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1148
- accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1149
- onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1150
- onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1151
- onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1152
- accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1153
- accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1154
- accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1155
- accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1156
- accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1157
- data: ArrayLike<unknown> | import("react-native-reanimated").SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
1158
- 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;
1159
- 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;
1160
- 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;
1161
- onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
1162
- scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1163
- innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
1164
- scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
1165
- decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
1166
- invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1167
- keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
1168
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
1169
- 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;
1170
- 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;
1171
- pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1172
- scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1173
- showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1174
- showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1175
- stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1176
- 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;
1177
- snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1178
- snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
1179
- snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1180
- snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1181
- stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
1182
- disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1183
- disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1184
- StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
1185
- alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1186
- alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1187
- automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1188
- automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1189
- automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1190
- bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1191
- bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1192
- canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1193
- centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1194
- contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1195
- contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
1196
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
1197
- directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1198
- maintainVisibleContentPosition?: {
1199
- autoscrollToTopThreshold?: number | null | undefined;
1200
- minIndexForVisible: number;
1201
- } | import("react-native-reanimated").SharedValue<{
1202
- autoscrollToTopThreshold?: number | null | undefined;
1203
- minIndexForVisible: number;
1204
- } | null | undefined> | null | undefined;
1205
- maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1206
- minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1207
- onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
1208
- pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1209
- scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1210
- scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1211
- scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1212
- snapToAlignment?: "end" | "start" | "center" | import("react-native-reanimated").SharedValue<"end" | "start" | "center" | undefined> | undefined;
1213
- 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;
1214
- zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1215
- endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
1216
- scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1217
- overScrollMode?: "always" | "auto" | "never" | import("react-native-reanimated").SharedValue<"always" | "auto" | "never" | undefined> | undefined;
1218
- nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1219
- fadingEdgeLength?: number | {
1220
- start: number;
1221
- end: number;
1222
- } | import("react-native-reanimated").SharedValue<number | {
1223
- start: number;
1224
- end: number;
1225
- } | undefined> | undefined;
1226
- persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1092
+ }>[] | undefined;
1093
+ accessibilityLabel?: string | undefined | undefined;
1094
+ 'aria-label'?: string | undefined | undefined;
1095
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
1096
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
1097
+ 'aria-busy'?: boolean | undefined | undefined;
1098
+ 'aria-checked'?: boolean | "mixed" | undefined | undefined;
1099
+ 'aria-disabled'?: boolean | undefined | undefined;
1100
+ 'aria-expanded'?: boolean | undefined | undefined;
1101
+ 'aria-selected'?: boolean | undefined | undefined;
1102
+ accessibilityHint?: string | undefined | undefined;
1103
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1104
+ 'aria-valuemax'?: number | undefined;
1105
+ 'aria-valuemin'?: number | undefined;
1106
+ 'aria-valuenow'?: number | undefined;
1107
+ 'aria-valuetext'?: string | undefined;
1108
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
1109
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
1110
+ 'aria-hidden'?: boolean | undefined | undefined;
1111
+ 'aria-modal'?: boolean | undefined | undefined;
1112
+ role?: import("react-native").Role | undefined;
1113
+ accessibilityLabelledBy?: string | string[] | undefined | undefined;
1114
+ 'aria-labelledby'?: string | undefined | undefined;
1115
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
1116
+ 'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
1117
+ screenReaderFocusable?: boolean | undefined | undefined;
1118
+ accessibilityElementsHidden?: boolean | undefined | undefined;
1119
+ accessibilityViewIsModal?: boolean | undefined | undefined;
1120
+ onAccessibilityEscape?: (() => void) | undefined | undefined;
1121
+ onAccessibilityTap?: (() => void) | undefined | undefined;
1122
+ onMagicTap?: (() => void) | undefined | undefined;
1123
+ accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
1124
+ accessibilityLanguage?: string | undefined | undefined;
1125
+ accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
1126
+ accessibilityLargeContentTitle?: string | undefined | undefined;
1127
+ accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
1128
+ data?: ArrayLike<unknown> | null | undefined;
1129
+ keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | undefined | undefined;
1227
1130
  extraData?: any | undefined;
1228
1131
  getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
1229
1132
  length: number;
1230
1133
  offset: number;
1231
1134
  index: number;
1232
- }) | import("react-native-reanimated").SharedValue<((data: ArrayLike<unknown> | null | undefined, index: number) => {
1233
- length: number;
1234
- offset: number;
1235
- index: number;
1236
- }) | undefined> | undefined;
1237
- initialNumToRender?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1238
- initialScrollIndex?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
1239
- keyExtractor?: ((item: unknown, index: number) => string) | import("react-native-reanimated").SharedValue<((item: unknown, index: number) => string) | undefined> | undefined;
1240
- legacyImplementation?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1241
- numColumns?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1242
- onRefresh?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | null | undefined> | null | undefined;
1135
+ }) | undefined;
1136
+ initialNumToRender?: number | undefined | undefined;
1137
+ initialScrollIndex?: number | null | undefined | undefined;
1138
+ keyExtractor?: ((item: unknown, index: number) => string) | undefined;
1139
+ legacyImplementation?: boolean | undefined | undefined;
1140
+ numColumns?: number | undefined | undefined;
1141
+ onRefresh?: (() => void) | null | undefined | undefined;
1243
1142
  onViewableItemsChanged?: ((info: {
1244
1143
  viewableItems: import("react-native").ViewToken<unknown>[];
1245
1144
  changed: import("react-native").ViewToken<unknown>[];
1246
- }) => void) | import("react-native-reanimated").SharedValue<((info: {
1247
- viewableItems: import("react-native").ViewToken<unknown>[];
1248
- changed: import("react-native").ViewToken<unknown>[];
1249
- }) => void) | null | undefined> | null | undefined;
1250
- refreshing?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
1251
- renderItem: import("react-native").ListRenderItem<unknown> | import("react-native-reanimated").SharedValue<import("react-native").ListRenderItem<unknown> | null | undefined> | null | undefined;
1252
- viewabilityConfig?: import("react-native").ViewabilityConfig | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfig | undefined> | undefined;
1253
- ItemSeparatorComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | null | undefined> | null | undefined;
1254
- ListEmptyComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined> | null | undefined;
1255
- ListFooterComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined> | null | undefined;
1256
- ListHeaderComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined> | null | undefined;
1257
- debug?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1258
- disableVirtualization?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1259
- getItem?: ((data: any, index: number) => unknown) | import("react-native-reanimated").SharedValue<((data: any, index: number) => unknown) | undefined> | undefined;
1260
- getItemCount?: ((data: any) => number) | import("react-native-reanimated").SharedValue<((data: any) => number) | undefined> | undefined;
1261
- inverted?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
1262
- maxToRenderPerBatch?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1145
+ }) => void) | null | undefined;
1146
+ refreshing?: boolean | null | undefined | undefined;
1147
+ renderItem?: import("react-native").ListRenderItem<unknown> | null | undefined;
1148
+ viewabilityConfig?: import("react-native").ViewabilityConfig | undefined;
1149
+ fadingEdgeLength?: number | {
1150
+ start: number;
1151
+ end: number;
1152
+ } | undefined | undefined;
1153
+ ItemSeparatorComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined;
1154
+ ListEmptyComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined;
1155
+ ListFooterComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined;
1156
+ ListHeaderComponent?: import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ComponentType<any> | null | undefined;
1157
+ debug?: boolean | undefined | undefined;
1158
+ disableVirtualization?: boolean | undefined | undefined;
1159
+ getItem?: ((data: any, index: number) => unknown) | undefined;
1160
+ getItemCount?: ((data: any) => number) | undefined | undefined;
1161
+ inverted?: boolean | null | undefined | undefined;
1162
+ maxToRenderPerBatch?: number | undefined | undefined;
1263
1163
  onEndReached?: ((info: {
1264
1164
  distanceFromEnd: number;
1265
- }) => void) | import("react-native-reanimated").SharedValue<((info: {
1266
- distanceFromEnd: number;
1267
- }) => void) | null | undefined> | null | undefined;
1268
- onEndReachedThreshold?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
1165
+ }) => void) | null | undefined | undefined;
1166
+ onEndReachedThreshold?: number | null | undefined | undefined;
1269
1167
  onScrollToIndexFailed?: ((info: {
1270
1168
  index: number;
1271
1169
  highestMeasuredFrameIndex: number;
1272
1170
  averageItemLength: number;
1273
- }) => void) | import("react-native-reanimated").SharedValue<((info: {
1274
- index: number;
1275
- highestMeasuredFrameIndex: number;
1276
- averageItemLength: number;
1277
- }) => void) | undefined> | undefined;
1171
+ }) => void) | undefined | undefined;
1278
1172
  onStartReached?: ((info: {
1279
1173
  distanceFromStart: number;
1280
- }) => void) | import("react-native-reanimated").SharedValue<((info: {
1281
- distanceFromStart: number;
1282
- }) => void) | null | undefined> | null | undefined;
1283
- onStartReachedThreshold?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
1284
- progressViewOffset?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1285
- renderScrollComponent?: ((props: import("react-native").ScrollViewProps) => import("react").ReactElement<import("react-native").ScrollViewProps>) | import("react-native-reanimated").SharedValue<((props: import("react-native").ScrollViewProps) => import("react").ReactElement<import("react-native").ScrollViewProps>) | undefined> | undefined;
1286
- updateCellsBatchingPeriod?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1287
- viewabilityConfigCallbackPairs?: import("react-native").ViewabilityConfigCallbackPairs | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfigCallbackPairs | undefined> | undefined;
1288
- windowSize?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1289
- 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;
1290
- } & {
1291
- style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1292
- contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1293
- indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
1294
- columnWrapperStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1295
- ListFooterComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1296
- ListHeaderComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1297
- } & {
1298
- layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
1299
- entering?: import("react-native-reanimated").EntryOrExitLayoutType;
1300
- exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
1301
- }> | import("react-native-reanimated").CSSStyle<import("react-native").FlatListProps<unknown>>> | undefined;
1174
+ }) => void) | null | undefined | undefined;
1175
+ onStartReachedThreshold?: number | null | undefined | undefined;
1176
+ progressViewOffset?: number | undefined | undefined;
1177
+ renderScrollComponent?: ((props: import("react-native").ScrollViewProps) => import("react").ReactElement<import("react-native").ScrollViewProps>) | undefined | undefined;
1178
+ updateCellsBatchingPeriod?: number | undefined | undefined;
1179
+ viewabilityConfigCallbackPairs?: import("react-native").ViewabilityConfigCallbackPairs | undefined;
1180
+ windowSize?: number | undefined | undefined;
1181
+ CellRendererComponent?: import("react").ComponentType<import("react-native").CellRendererProps<unknown>> | null | undefined;
1182
+ innerViewRef?: import("react").RefObject<View> | undefined;
1183
+ scrollViewRef?: import("react").RefObject<ScrollView> | undefined;
1184
+ decelerationRate?: "fast" | "normal" | number | undefined | undefined;
1185
+ invertStickyHeaders?: boolean | undefined | undefined;
1186
+ keyboardDismissMode?: "none" | "interactive" | "on-drag" | undefined | undefined;
1187
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | undefined | undefined;
1188
+ onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1189
+ onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1190
+ onScrollEndDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1191
+ onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1192
+ onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1193
+ pagingEnabled?: boolean | undefined | undefined;
1194
+ scrollEnabled?: boolean | undefined | undefined;
1195
+ showsHorizontalScrollIndicator?: boolean | undefined | undefined;
1196
+ showsVerticalScrollIndicator?: boolean | undefined | undefined;
1197
+ stickyHeaderHiddenOnScroll?: boolean | undefined | undefined;
1198
+ refreshControl?: import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | undefined;
1199
+ snapToInterval?: number | undefined | undefined;
1200
+ snapToOffsets?: number[] | undefined | undefined;
1201
+ snapToStart?: boolean | undefined | undefined;
1202
+ snapToEnd?: boolean | undefined | undefined;
1203
+ stickyHeaderIndices?: number[] | undefined | undefined;
1204
+ disableIntervalMomentum?: boolean | undefined | undefined;
1205
+ disableScrollViewPanResponder?: boolean | undefined | undefined;
1206
+ StickyHeaderComponent?: import("react").ComponentType<any> | undefined;
1207
+ alwaysBounceHorizontal?: boolean | undefined | undefined;
1208
+ alwaysBounceVertical?: boolean | undefined | undefined;
1209
+ automaticallyAdjustContentInsets?: boolean | undefined | undefined;
1210
+ automaticallyAdjustKeyboardInsets?: boolean | undefined | undefined;
1211
+ automaticallyAdjustsScrollIndicatorInsets?: boolean | undefined | undefined;
1212
+ bounces?: boolean | undefined | undefined;
1213
+ bouncesZoom?: boolean | undefined | undefined;
1214
+ canCancelContentTouches?: boolean | undefined | undefined;
1215
+ centerContent?: boolean | undefined | undefined;
1216
+ contentInset?: import("react-native").Insets | undefined;
1217
+ contentOffset?: import("react-native").PointProp | undefined;
1218
+ contentInsetAdjustmentBehavior?: "automatic" | "scrollableAxes" | "never" | "always" | undefined | undefined;
1219
+ directionalLockEnabled?: boolean | undefined | undefined;
1220
+ maintainVisibleContentPosition?: null | {
1221
+ autoscrollToTopThreshold?: number | null | undefined;
1222
+ minIndexForVisible: number;
1223
+ } | undefined | undefined;
1224
+ maximumZoomScale?: number | undefined | undefined;
1225
+ minimumZoomScale?: number | undefined | undefined;
1226
+ onScrollAnimationEnd?: (() => void) | undefined | undefined;
1227
+ pinchGestureEnabled?: boolean | undefined | undefined;
1228
+ scrollEventThrottle?: number | undefined | undefined;
1229
+ scrollIndicatorInsets?: import("react-native").Insets | undefined;
1230
+ scrollToOverflowEnabled?: boolean | undefined | undefined;
1231
+ scrollsToTop?: boolean | undefined | undefined;
1232
+ snapToAlignment?: "start" | "center" | "end" | undefined | undefined;
1233
+ onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
1234
+ zoomScale?: number | undefined | undefined;
1235
+ endFillColor?: import("react-native").ColorValue | undefined;
1236
+ scrollPerfTag?: string | undefined | undefined;
1237
+ overScrollMode?: "auto" | "always" | "never" | undefined | undefined;
1238
+ nestedScrollEnabled?: boolean | undefined | undefined;
1239
+ persistentScrollbar?: boolean | undefined | undefined;
1240
+ }>> | undefined;
1241
+ } & {
1242
+ sharedTransitionTag?: string;
1243
+ sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
1302
1244
  } & {
1303
1245
  styleId?: string;
1304
1246
  } & import("react").RefAttributes<never>>>;