react-native-screen-transitions 1.0.2 → 1.1.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.
package/dist/index.d.ts CHANGED
@@ -1,3 +1,5 @@
1
+ import * as _react_navigation_routers from '@react-navigation/routers';
2
+ import * as _react_navigation_core from '@react-navigation/core';
1
3
  import { ScreenListeners, NavigationState, EventMapBase, RouteProp, ParamListBase } from '@react-navigation/native';
2
4
  import * as react_native from 'react-native';
3
5
  import { ScaledSize, View } from 'react-native';
@@ -61,7 +63,7 @@ interface ScreenInterpolationProps {
61
63
  };
62
64
  /** The safe area insets for the screen. */
63
65
  insets: EdgeInsets;
64
- /** A flag indicating if the current route is in the process of closing. */
66
+ /** A flag indicating if the current screen is in the process of closing. */
65
67
  closing: boolean;
66
68
  }
67
69
  type GestureValues = {
@@ -85,6 +87,10 @@ type GestureValues = {
85
87
  * The live normalized vertical translation of the gesture (-1 to 1).
86
88
  */
87
89
  normalizedY: SharedValue<number>;
90
+ /**
91
+ * A flag indicating if the screen is in the process of dismissing.
92
+ */
93
+ isDismissing: SharedValue<number>;
88
94
  };
89
95
  type ScreenStyleInterpolator = (props: ScreenInterpolationProps) => TransitionInterpolatedStyle;
90
96
  type TransitionInterpolatedStyle = {
@@ -116,6 +122,10 @@ interface TransitionEventHandlersProps extends TransitionConfig {
116
122
  route: RouteProp<ParamListBase, string>;
117
123
  }
118
124
 
125
+ declare function createTransitionAwareComponent<P extends object>(Wrapped: ComponentType<P>): react__default.MemoExoticComponent<react__default.ForwardRefExoticComponent<AnimatedProps<P> & react__default.RefAttributes<react__default.ComponentRef<typeof Wrapped>>>>;
126
+
127
+ declare function createTransitionAwareScrollable<P extends object>(ScrollableComponent: ComponentType<P>): React.MemoExoticComponent<React.ForwardRefExoticComponent<AnimatedProps<P> & React.RefAttributes<React.ComponentRef<typeof ScrollableComponent>>>>;
128
+
119
129
  declare const SlideFromTop: (config?: Partial<TransitionConfig>) => TransitionConfig;
120
130
  declare const ZoomIn: (config?: Partial<TransitionConfig>) => TransitionConfig;
121
131
  declare const SlideFromBottom: (config?: Partial<TransitionConfig>) => TransitionConfig;
@@ -142,17 +152,14 @@ declare namespace specs {
142
152
 
143
153
  declare const useScreenAnimation: () => ScreenInterpolationProps;
144
154
 
145
- declare function createTransitionComponent<P extends object>(Wrapped: ComponentType<P>): react__default.MemoExoticComponent<react__default.ForwardRefExoticComponent<AnimatedProps<P> & react__default.RefAttributes<react__default.ComponentRef<typeof Wrapped>>>>;
146
-
147
155
  declare const _default: {
148
- createTransitionComponent: typeof createTransitionComponent;
149
156
  View: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
150
157
  children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
151
158
  hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
152
159
  id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
153
160
  needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
154
161
  onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
155
- pointerEvents?: "box-none" | "none" | "box-only" | "auto" | react_native_reanimated.SharedValue<"box-none" | "none" | "box-only" | "auto" | undefined> | undefined;
162
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
156
163
  removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
157
164
  testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
158
165
  nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
@@ -254,7 +261,7 @@ declare const _default: {
254
261
  id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
255
262
  needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
256
263
  onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
257
- pointerEvents?: "box-none" | "none" | "box-only" | "auto" | react_native_reanimated.SharedValue<"box-none" | "none" | "box-only" | "auto" | undefined> | undefined;
264
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
258
265
  removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
259
266
  testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
260
267
  nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
@@ -357,7 +364,7 @@ declare const _default: {
357
364
  id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
358
365
  needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
359
366
  onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
360
- pointerEvents?: "box-none" | "none" | "box-only" | "auto" | react_native_reanimated.SharedValue<"box-none" | "none" | "box-only" | "auto" | undefined> | undefined;
367
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
361
368
  removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
362
369
  testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
363
370
  nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
@@ -479,7 +486,7 @@ declare const _default: {
479
486
  id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
480
487
  needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
481
488
  onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
482
- pointerEvents?: "box-none" | "none" | "box-only" | "auto" | react_native_reanimated.SharedValue<"box-none" | "none" | "box-only" | "auto" | undefined> | undefined;
489
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
483
490
  removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
484
491
  testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
485
492
  nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
@@ -596,7 +603,856 @@ declare const _default: {
596
603
  sharedTransitionStyle?: react_native_reanimated.SharedTransition;
597
604
  }> | undefined;
598
605
  } & react.RefAttributes<View | react.Component<react_native.PressableProps & react.RefAttributes<View>, any, any>>>>;
606
+ ScrollView: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
607
+ children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
608
+ hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
609
+ id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
610
+ needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
611
+ onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
612
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
613
+ removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
614
+ testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
615
+ nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
616
+ collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
617
+ collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
618
+ renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
619
+ focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
620
+ tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
621
+ shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
622
+ isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
623
+ hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
624
+ tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
625
+ tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
626
+ tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
627
+ tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
628
+ onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
629
+ onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
630
+ onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
631
+ onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
632
+ onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
633
+ onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
634
+ onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
635
+ onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
636
+ onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
637
+ onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
638
+ onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
639
+ onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
640
+ onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
641
+ onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
642
+ onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
643
+ onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
644
+ onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
645
+ onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
646
+ onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
647
+ onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
648
+ onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
649
+ onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
650
+ onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
651
+ onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
652
+ onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
653
+ onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
654
+ onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
655
+ onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
656
+ onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
657
+ accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
658
+ accessibilityActions?: readonly Readonly<{
659
+ name: react_native.AccessibilityActionName | string;
660
+ label?: string | undefined;
661
+ }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
662
+ name: react_native.AccessibilityActionName | string;
663
+ label?: string | undefined;
664
+ }>[] | undefined> | undefined;
665
+ accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
666
+ 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
667
+ accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
668
+ accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
669
+ 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
670
+ 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
671
+ 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
672
+ 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
673
+ 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
674
+ accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
675
+ accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
676
+ 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
677
+ 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
678
+ 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
679
+ 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
680
+ onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
681
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
682
+ 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
683
+ 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
684
+ role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
685
+ accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
686
+ 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
687
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
688
+ 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
689
+ accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
690
+ accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
691
+ onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
692
+ onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
693
+ onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
694
+ accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
695
+ accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
696
+ accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
697
+ accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
698
+ decelerationRate?: number | "normal" | "fast" | react_native_reanimated.SharedValue<number | "normal" | "fast" | undefined> | undefined;
699
+ horizontal?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
700
+ invertStickyHeaders?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
701
+ keyboardDismissMode?: "none" | "interactive" | "on-drag" | react_native_reanimated.SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
702
+ keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | react_native_reanimated.SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
703
+ onContentSizeChange?: ((w: number, h: number) => void) | react_native_reanimated.SharedValue<((w: number, h: number) => void) | undefined> | undefined;
704
+ onScroll?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
705
+ onScrollBeginDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
706
+ onScrollEndDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
707
+ onMomentumScrollEnd?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
708
+ onMomentumScrollBegin?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
709
+ pagingEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
710
+ scrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
711
+ showsHorizontalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
712
+ showsVerticalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
713
+ stickyHeaderHiddenOnScroll?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
714
+ refreshControl?: react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | react_native_reanimated.SharedValue<react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | undefined> | undefined;
715
+ snapToInterval?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
716
+ snapToOffsets?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
717
+ snapToStart?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
718
+ snapToEnd?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
719
+ stickyHeaderIndices?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
720
+ disableIntervalMomentum?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
721
+ disableScrollViewPanResponder?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
722
+ StickyHeaderComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | undefined> | undefined;
723
+ alwaysBounceHorizontal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
724
+ alwaysBounceVertical?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
725
+ automaticallyAdjustContentInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
726
+ automaticallyAdjustKeyboardInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
727
+ automaticallyAdjustsScrollIndicatorInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
728
+ bounces?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
729
+ bouncesZoom?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
730
+ canCancelContentTouches?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
731
+ centerContent?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
732
+ contentInset?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
733
+ contentOffset?: react_native.PointProp | react_native_reanimated.SharedValue<react_native.PointProp | undefined> | undefined;
734
+ contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | react_native_reanimated.SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
735
+ directionalLockEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
736
+ maintainVisibleContentPosition?: {
737
+ autoscrollToTopThreshold?: number | null | undefined;
738
+ minIndexForVisible: number;
739
+ } | react_native_reanimated.SharedValue<{
740
+ autoscrollToTopThreshold?: number | null | undefined;
741
+ minIndexForVisible: number;
742
+ } | null | undefined> | null | undefined;
743
+ maximumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
744
+ minimumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
745
+ onScrollAnimationEnd?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
746
+ pinchGestureEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
747
+ scrollEventThrottle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
748
+ scrollIndicatorInsets?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
749
+ scrollToOverflowEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
750
+ scrollsToTop?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
751
+ snapToAlignment?: "center" | "end" | "start" | react_native_reanimated.SharedValue<"center" | "end" | "start" | undefined> | undefined;
752
+ onScrollToTop?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
753
+ zoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
754
+ endFillColor?: react_native.ColorValue | react_native_reanimated.SharedValue<react_native.ColorValue | undefined> | undefined;
755
+ scrollPerfTag?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
756
+ overScrollMode?: "always" | "never" | "auto" | react_native_reanimated.SharedValue<"always" | "never" | "auto" | undefined> | undefined;
757
+ nestedScrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
758
+ fadingEdgeLength?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
759
+ persistentScrollbar?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
760
+ } & {
761
+ style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
762
+ contentContainerStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
763
+ indicatorStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<"default" | "black" | "white" | undefined>>;
764
+ } & {
765
+ layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
766
+ entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
767
+ exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
768
+ } & {
769
+ sharedTransitionTag?: string;
770
+ sharedTransitionStyle?: react_native_reanimated.SharedTransition;
771
+ } & {
772
+ animatedProps?: Partial<{
773
+ children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
774
+ hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
775
+ id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
776
+ needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
777
+ onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
778
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
779
+ removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
780
+ testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
781
+ nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
782
+ collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
783
+ collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
784
+ renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
785
+ focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
786
+ tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
787
+ shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
788
+ isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
789
+ hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
790
+ tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
791
+ tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
792
+ tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
793
+ tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
794
+ onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
795
+ onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
796
+ onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
797
+ onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
798
+ onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
799
+ onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
800
+ onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
801
+ onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
802
+ onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
803
+ onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
804
+ onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
805
+ onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
806
+ onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
807
+ onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
808
+ onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
809
+ onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
810
+ onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
811
+ onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
812
+ onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
813
+ onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
814
+ onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
815
+ onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
816
+ onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
817
+ onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
818
+ onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
819
+ onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
820
+ onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
821
+ onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
822
+ onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
823
+ accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
824
+ accessibilityActions?: readonly Readonly<{
825
+ name: react_native.AccessibilityActionName | string;
826
+ label?: string | undefined;
827
+ }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
828
+ name: react_native.AccessibilityActionName | string;
829
+ label?: string | undefined;
830
+ }>[] | undefined> | undefined;
831
+ accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
832
+ 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
833
+ accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
834
+ accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
835
+ 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
836
+ 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
837
+ 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
838
+ 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
839
+ 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
840
+ accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
841
+ accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
842
+ 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
843
+ 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
844
+ 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
845
+ 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
846
+ onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
847
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
848
+ 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
849
+ 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
850
+ role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
851
+ accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
852
+ 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
853
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
854
+ 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
855
+ accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
856
+ accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
857
+ onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
858
+ onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
859
+ onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
860
+ accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
861
+ accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
862
+ accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
863
+ accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
864
+ decelerationRate?: number | "normal" | "fast" | react_native_reanimated.SharedValue<number | "normal" | "fast" | undefined> | undefined;
865
+ horizontal?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
866
+ invertStickyHeaders?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
867
+ keyboardDismissMode?: "none" | "interactive" | "on-drag" | react_native_reanimated.SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
868
+ keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | react_native_reanimated.SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
869
+ onContentSizeChange?: ((w: number, h: number) => void) | react_native_reanimated.SharedValue<((w: number, h: number) => void) | undefined> | undefined;
870
+ onScroll?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
871
+ onScrollBeginDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
872
+ onScrollEndDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
873
+ onMomentumScrollEnd?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
874
+ onMomentumScrollBegin?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
875
+ pagingEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
876
+ scrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
877
+ showsHorizontalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
878
+ showsVerticalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
879
+ stickyHeaderHiddenOnScroll?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
880
+ refreshControl?: react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | react_native_reanimated.SharedValue<react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | undefined> | undefined;
881
+ snapToInterval?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
882
+ snapToOffsets?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
883
+ snapToStart?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
884
+ snapToEnd?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
885
+ stickyHeaderIndices?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
886
+ disableIntervalMomentum?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
887
+ disableScrollViewPanResponder?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
888
+ StickyHeaderComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | undefined> | undefined;
889
+ alwaysBounceHorizontal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
890
+ alwaysBounceVertical?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
891
+ automaticallyAdjustContentInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
892
+ automaticallyAdjustKeyboardInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
893
+ automaticallyAdjustsScrollIndicatorInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
894
+ bounces?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
895
+ bouncesZoom?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
896
+ canCancelContentTouches?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
897
+ centerContent?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
898
+ contentInset?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
899
+ contentOffset?: react_native.PointProp | react_native_reanimated.SharedValue<react_native.PointProp | undefined> | undefined;
900
+ contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | react_native_reanimated.SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
901
+ directionalLockEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
902
+ maintainVisibleContentPosition?: {
903
+ autoscrollToTopThreshold?: number | null | undefined;
904
+ minIndexForVisible: number;
905
+ } | react_native_reanimated.SharedValue<{
906
+ autoscrollToTopThreshold?: number | null | undefined;
907
+ minIndexForVisible: number;
908
+ } | null | undefined> | null | undefined;
909
+ maximumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
910
+ minimumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
911
+ onScrollAnimationEnd?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
912
+ pinchGestureEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
913
+ scrollEventThrottle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
914
+ scrollIndicatorInsets?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
915
+ scrollToOverflowEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
916
+ scrollsToTop?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
917
+ snapToAlignment?: "center" | "end" | "start" | react_native_reanimated.SharedValue<"center" | "end" | "start" | undefined> | undefined;
918
+ onScrollToTop?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
919
+ zoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
920
+ endFillColor?: react_native.ColorValue | react_native_reanimated.SharedValue<react_native.ColorValue | undefined> | undefined;
921
+ scrollPerfTag?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
922
+ overScrollMode?: "always" | "never" | "auto" | react_native_reanimated.SharedValue<"always" | "never" | "auto" | undefined> | undefined;
923
+ nestedScrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
924
+ fadingEdgeLength?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
925
+ persistentScrollbar?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
926
+ } & {
927
+ style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
928
+ contentContainerStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
929
+ indicatorStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<"default" | "black" | "white" | undefined>>;
930
+ } & {
931
+ layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
932
+ entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
933
+ exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
934
+ } & {
935
+ sharedTransitionTag?: string;
936
+ sharedTransitionStyle?: react_native_reanimated.SharedTransition;
937
+ }> | undefined;
938
+ } & react.RefAttributes<never>>>;
939
+ FlatList: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
940
+ children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
941
+ hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
942
+ id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
943
+ needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
944
+ onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
945
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
946
+ removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
947
+ testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
948
+ nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
949
+ collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
950
+ collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
951
+ renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
952
+ focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
953
+ tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
954
+ shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
955
+ isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
956
+ hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
957
+ tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
958
+ tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
959
+ tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
960
+ tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
961
+ onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
962
+ onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
963
+ onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
964
+ onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
965
+ onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
966
+ onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
967
+ onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
968
+ onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
969
+ onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
970
+ onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
971
+ onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
972
+ onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
973
+ onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
974
+ onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
975
+ onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
976
+ onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
977
+ onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
978
+ onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
979
+ onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
980
+ onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
981
+ onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
982
+ onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
983
+ onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
984
+ onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
985
+ onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
986
+ onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
987
+ onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
988
+ onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
989
+ onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
990
+ accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
991
+ accessibilityActions?: readonly Readonly<{
992
+ name: react_native.AccessibilityActionName | string;
993
+ label?: string | undefined;
994
+ }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
995
+ name: react_native.AccessibilityActionName | string;
996
+ label?: string | undefined;
997
+ }>[] | undefined> | undefined;
998
+ accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
999
+ 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1000
+ accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
1001
+ accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
1002
+ 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1003
+ 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
1004
+ 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1005
+ 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1006
+ 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1007
+ accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1008
+ accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
1009
+ 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1010
+ 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1011
+ 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1012
+ 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1013
+ onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
1014
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
1015
+ 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1016
+ 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1017
+ role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
1018
+ accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
1019
+ 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1020
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
1021
+ 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
1022
+ accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1023
+ accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1024
+ onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1025
+ onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1026
+ onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1027
+ accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1028
+ accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1029
+ accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1030
+ accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1031
+ data: ArrayLike<unknown> | react_native_reanimated.SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
1032
+ decelerationRate?: number | "normal" | "fast" | react_native_reanimated.SharedValue<number | "normal" | "fast" | undefined> | undefined;
1033
+ horizontal?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
1034
+ invertStickyHeaders?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1035
+ keyboardDismissMode?: "none" | "interactive" | "on-drag" | react_native_reanimated.SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
1036
+ keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | react_native_reanimated.SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
1037
+ onContentSizeChange?: ((w: number, h: number) => void) | react_native_reanimated.SharedValue<((w: number, h: number) => void) | undefined> | undefined;
1038
+ onScroll?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1039
+ onScrollBeginDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1040
+ onScrollEndDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1041
+ onMomentumScrollEnd?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1042
+ onMomentumScrollBegin?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1043
+ pagingEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1044
+ scrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1045
+ showsHorizontalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1046
+ showsVerticalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1047
+ stickyHeaderHiddenOnScroll?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1048
+ refreshControl?: react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | react_native_reanimated.SharedValue<react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | undefined> | undefined;
1049
+ snapToInterval?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1050
+ snapToOffsets?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
1051
+ snapToStart?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1052
+ snapToEnd?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1053
+ stickyHeaderIndices?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
1054
+ disableIntervalMomentum?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1055
+ disableScrollViewPanResponder?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1056
+ StickyHeaderComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | undefined> | undefined;
1057
+ alwaysBounceHorizontal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1058
+ alwaysBounceVertical?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1059
+ automaticallyAdjustContentInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1060
+ automaticallyAdjustKeyboardInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1061
+ automaticallyAdjustsScrollIndicatorInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1062
+ bounces?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1063
+ bouncesZoom?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1064
+ canCancelContentTouches?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1065
+ centerContent?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1066
+ contentInset?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
1067
+ contentOffset?: react_native.PointProp | react_native_reanimated.SharedValue<react_native.PointProp | undefined> | undefined;
1068
+ contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | react_native_reanimated.SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
1069
+ directionalLockEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1070
+ maintainVisibleContentPosition?: {
1071
+ autoscrollToTopThreshold?: number | null | undefined;
1072
+ minIndexForVisible: number;
1073
+ } | react_native_reanimated.SharedValue<{
1074
+ autoscrollToTopThreshold?: number | null | undefined;
1075
+ minIndexForVisible: number;
1076
+ } | null | undefined> | null | undefined;
1077
+ maximumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1078
+ minimumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1079
+ onScrollAnimationEnd?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1080
+ pinchGestureEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1081
+ scrollEventThrottle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1082
+ scrollIndicatorInsets?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
1083
+ scrollToOverflowEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1084
+ scrollsToTop?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1085
+ snapToAlignment?: "center" | "end" | "start" | react_native_reanimated.SharedValue<"center" | "end" | "start" | undefined> | undefined;
1086
+ onScrollToTop?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1087
+ zoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1088
+ endFillColor?: react_native.ColorValue | react_native_reanimated.SharedValue<react_native.ColorValue | undefined> | undefined;
1089
+ scrollPerfTag?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1090
+ overScrollMode?: "always" | "never" | "auto" | react_native_reanimated.SharedValue<"always" | "never" | "auto" | undefined> | undefined;
1091
+ nestedScrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1092
+ fadingEdgeLength?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1093
+ persistentScrollbar?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1094
+ extraData?: any | undefined;
1095
+ getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
1096
+ length: number;
1097
+ offset: number;
1098
+ index: number;
1099
+ }) | react_native_reanimated.SharedValue<((data: ArrayLike<unknown> | null | undefined, index: number) => {
1100
+ length: number;
1101
+ offset: number;
1102
+ index: number;
1103
+ }) | undefined> | undefined;
1104
+ initialNumToRender?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1105
+ initialScrollIndex?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
1106
+ keyExtractor?: ((item: unknown, index: number) => string) | react_native_reanimated.SharedValue<((item: unknown, index: number) => string) | undefined> | undefined;
1107
+ legacyImplementation?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1108
+ numColumns?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1109
+ onRefresh?: (() => void) | react_native_reanimated.SharedValue<(() => void) | null | undefined> | null | undefined;
1110
+ onViewableItemsChanged?: ((info: {
1111
+ viewableItems: react_native.ViewToken<unknown>[];
1112
+ changed: react_native.ViewToken<unknown>[];
1113
+ }) => void) | react_native_reanimated.SharedValue<((info: {
1114
+ viewableItems: react_native.ViewToken<unknown>[];
1115
+ changed: react_native.ViewToken<unknown>[];
1116
+ }) => void) | null | undefined> | null | undefined;
1117
+ refreshing?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
1118
+ renderItem: react_native.ListRenderItem<unknown> | react_native_reanimated.SharedValue<react_native.ListRenderItem<unknown> | null | undefined> | null | undefined;
1119
+ viewabilityConfig?: react_native.ViewabilityConfig | react_native_reanimated.SharedValue<react_native.ViewabilityConfig | undefined> | undefined;
1120
+ ItemSeparatorComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | null | undefined> | null | undefined;
1121
+ ListEmptyComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
1122
+ ListFooterComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
1123
+ ListHeaderComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
1124
+ debug?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1125
+ disableVirtualization?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1126
+ getItem?: ((data: any, index: number) => unknown) | react_native_reanimated.SharedValue<((data: any, index: number) => unknown) | undefined> | undefined;
1127
+ getItemCount?: ((data: any) => number) | react_native_reanimated.SharedValue<((data: any) => number) | undefined> | undefined;
1128
+ inverted?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
1129
+ maxToRenderPerBatch?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1130
+ onEndReached?: ((info: {
1131
+ distanceFromEnd: number;
1132
+ }) => void) | react_native_reanimated.SharedValue<((info: {
1133
+ distanceFromEnd: number;
1134
+ }) => void) | null | undefined> | null | undefined;
1135
+ onEndReachedThreshold?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
1136
+ onScrollToIndexFailed?: ((info: {
1137
+ index: number;
1138
+ highestMeasuredFrameIndex: number;
1139
+ averageItemLength: number;
1140
+ }) => void) | react_native_reanimated.SharedValue<((info: {
1141
+ index: number;
1142
+ highestMeasuredFrameIndex: number;
1143
+ averageItemLength: number;
1144
+ }) => void) | undefined> | undefined;
1145
+ onStartReached?: ((info: {
1146
+ distanceFromStart: number;
1147
+ }) => void) | react_native_reanimated.SharedValue<((info: {
1148
+ distanceFromStart: number;
1149
+ }) => void) | null | undefined> | null | undefined;
1150
+ onStartReachedThreshold?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
1151
+ progressViewOffset?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1152
+ renderScrollComponent?: ((props: react_native.ScrollViewProps) => React.ReactElement<react_native.ScrollViewProps>) | react_native_reanimated.SharedValue<((props: react_native.ScrollViewProps) => React.ReactElement<react_native.ScrollViewProps>) | undefined> | undefined;
1153
+ updateCellsBatchingPeriod?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1154
+ viewabilityConfigCallbackPairs?: react_native.ViewabilityConfigCallbackPairs | react_native_reanimated.SharedValue<react_native.ViewabilityConfigCallbackPairs | undefined> | undefined;
1155
+ windowSize?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1156
+ CellRendererComponent?: react.ComponentType<react_native.CellRendererProps<unknown>> | react_native_reanimated.SharedValue<react.ComponentType<react_native.CellRendererProps<unknown>> | null | undefined> | null | undefined;
1157
+ } & {
1158
+ style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1159
+ contentContainerStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1160
+ indicatorStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<"default" | "black" | "white" | undefined>>;
1161
+ columnWrapperStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1162
+ ListFooterComponentStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1163
+ ListHeaderComponentStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1164
+ } & {
1165
+ layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
1166
+ entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
1167
+ exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
1168
+ } & {
1169
+ sharedTransitionTag?: string;
1170
+ sharedTransitionStyle?: react_native_reanimated.SharedTransition;
1171
+ } & {
1172
+ animatedProps?: Partial<{
1173
+ children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
1174
+ hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
1175
+ id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1176
+ needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1177
+ onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
1178
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
1179
+ removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1180
+ testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1181
+ nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1182
+ collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1183
+ collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1184
+ renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1185
+ focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1186
+ tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
1187
+ shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1188
+ isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1189
+ hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1190
+ tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1191
+ tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1192
+ tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1193
+ tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1194
+ onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
1195
+ onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
1196
+ onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1197
+ onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1198
+ onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1199
+ onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1200
+ onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1201
+ onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1202
+ onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
1203
+ onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1204
+ onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
1205
+ onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
1206
+ onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1207
+ onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1208
+ onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1209
+ onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1210
+ onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
1211
+ onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1212
+ onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1213
+ onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1214
+ onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1215
+ onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1216
+ onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1217
+ onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1218
+ onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1219
+ onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1220
+ onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1221
+ onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1222
+ onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
1223
+ accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1224
+ accessibilityActions?: readonly Readonly<{
1225
+ name: react_native.AccessibilityActionName | string;
1226
+ label?: string | undefined;
1227
+ }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
1228
+ name: react_native.AccessibilityActionName | string;
1229
+ label?: string | undefined;
1230
+ }>[] | undefined> | undefined;
1231
+ accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1232
+ 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1233
+ accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
1234
+ accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
1235
+ 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1236
+ 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
1237
+ 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1238
+ 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1239
+ 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1240
+ accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1241
+ accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
1242
+ 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1243
+ 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1244
+ 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1245
+ 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1246
+ onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
1247
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
1248
+ 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1249
+ 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1250
+ role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
1251
+ accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
1252
+ 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1253
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
1254
+ 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
1255
+ accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1256
+ accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1257
+ onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1258
+ onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1259
+ onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1260
+ accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1261
+ accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1262
+ accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1263
+ accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1264
+ data: ArrayLike<unknown> | react_native_reanimated.SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
1265
+ decelerationRate?: number | "normal" | "fast" | react_native_reanimated.SharedValue<number | "normal" | "fast" | undefined> | undefined;
1266
+ horizontal?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
1267
+ invertStickyHeaders?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1268
+ keyboardDismissMode?: "none" | "interactive" | "on-drag" | react_native_reanimated.SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
1269
+ keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | react_native_reanimated.SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
1270
+ onContentSizeChange?: ((w: number, h: number) => void) | react_native_reanimated.SharedValue<((w: number, h: number) => void) | undefined> | undefined;
1271
+ onScroll?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1272
+ onScrollBeginDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1273
+ onScrollEndDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1274
+ onMomentumScrollEnd?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1275
+ onMomentumScrollBegin?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1276
+ pagingEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1277
+ scrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1278
+ showsHorizontalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1279
+ showsVerticalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1280
+ stickyHeaderHiddenOnScroll?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1281
+ refreshControl?: react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | react_native_reanimated.SharedValue<react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | undefined> | undefined;
1282
+ snapToInterval?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1283
+ snapToOffsets?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
1284
+ snapToStart?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1285
+ snapToEnd?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1286
+ stickyHeaderIndices?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
1287
+ disableIntervalMomentum?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1288
+ disableScrollViewPanResponder?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1289
+ StickyHeaderComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | undefined> | undefined;
1290
+ alwaysBounceHorizontal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1291
+ alwaysBounceVertical?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1292
+ automaticallyAdjustContentInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1293
+ automaticallyAdjustKeyboardInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1294
+ automaticallyAdjustsScrollIndicatorInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1295
+ bounces?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1296
+ bouncesZoom?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1297
+ canCancelContentTouches?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1298
+ centerContent?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1299
+ contentInset?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
1300
+ contentOffset?: react_native.PointProp | react_native_reanimated.SharedValue<react_native.PointProp | undefined> | undefined;
1301
+ contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | react_native_reanimated.SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
1302
+ directionalLockEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1303
+ maintainVisibleContentPosition?: {
1304
+ autoscrollToTopThreshold?: number | null | undefined;
1305
+ minIndexForVisible: number;
1306
+ } | react_native_reanimated.SharedValue<{
1307
+ autoscrollToTopThreshold?: number | null | undefined;
1308
+ minIndexForVisible: number;
1309
+ } | null | undefined> | null | undefined;
1310
+ maximumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1311
+ minimumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1312
+ onScrollAnimationEnd?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
1313
+ pinchGestureEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1314
+ scrollEventThrottle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1315
+ scrollIndicatorInsets?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
1316
+ scrollToOverflowEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1317
+ scrollsToTop?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1318
+ snapToAlignment?: "center" | "end" | "start" | react_native_reanimated.SharedValue<"center" | "end" | "start" | undefined> | undefined;
1319
+ onScrollToTop?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
1320
+ zoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1321
+ endFillColor?: react_native.ColorValue | react_native_reanimated.SharedValue<react_native.ColorValue | undefined> | undefined;
1322
+ scrollPerfTag?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
1323
+ overScrollMode?: "always" | "never" | "auto" | react_native_reanimated.SharedValue<"always" | "never" | "auto" | undefined> | undefined;
1324
+ nestedScrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1325
+ fadingEdgeLength?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1326
+ persistentScrollbar?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1327
+ extraData?: any | undefined;
1328
+ getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
1329
+ length: number;
1330
+ offset: number;
1331
+ index: number;
1332
+ }) | react_native_reanimated.SharedValue<((data: ArrayLike<unknown> | null | undefined, index: number) => {
1333
+ length: number;
1334
+ offset: number;
1335
+ index: number;
1336
+ }) | undefined> | undefined;
1337
+ initialNumToRender?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1338
+ initialScrollIndex?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
1339
+ keyExtractor?: ((item: unknown, index: number) => string) | react_native_reanimated.SharedValue<((item: unknown, index: number) => string) | undefined> | undefined;
1340
+ legacyImplementation?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1341
+ numColumns?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1342
+ onRefresh?: (() => void) | react_native_reanimated.SharedValue<(() => void) | null | undefined> | null | undefined;
1343
+ onViewableItemsChanged?: ((info: {
1344
+ viewableItems: react_native.ViewToken<unknown>[];
1345
+ changed: react_native.ViewToken<unknown>[];
1346
+ }) => void) | react_native_reanimated.SharedValue<((info: {
1347
+ viewableItems: react_native.ViewToken<unknown>[];
1348
+ changed: react_native.ViewToken<unknown>[];
1349
+ }) => void) | null | undefined> | null | undefined;
1350
+ refreshing?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
1351
+ renderItem: react_native.ListRenderItem<unknown> | react_native_reanimated.SharedValue<react_native.ListRenderItem<unknown> | null | undefined> | null | undefined;
1352
+ viewabilityConfig?: react_native.ViewabilityConfig | react_native_reanimated.SharedValue<react_native.ViewabilityConfig | undefined> | undefined;
1353
+ ItemSeparatorComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | null | undefined> | null | undefined;
1354
+ ListEmptyComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
1355
+ ListFooterComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
1356
+ ListHeaderComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
1357
+ debug?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1358
+ disableVirtualization?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
1359
+ getItem?: ((data: any, index: number) => unknown) | react_native_reanimated.SharedValue<((data: any, index: number) => unknown) | undefined> | undefined;
1360
+ getItemCount?: ((data: any) => number) | react_native_reanimated.SharedValue<((data: any) => number) | undefined> | undefined;
1361
+ inverted?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
1362
+ maxToRenderPerBatch?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1363
+ onEndReached?: ((info: {
1364
+ distanceFromEnd: number;
1365
+ }) => void) | react_native_reanimated.SharedValue<((info: {
1366
+ distanceFromEnd: number;
1367
+ }) => void) | null | undefined> | null | undefined;
1368
+ onEndReachedThreshold?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
1369
+ onScrollToIndexFailed?: ((info: {
1370
+ index: number;
1371
+ highestMeasuredFrameIndex: number;
1372
+ averageItemLength: number;
1373
+ }) => void) | react_native_reanimated.SharedValue<((info: {
1374
+ index: number;
1375
+ highestMeasuredFrameIndex: number;
1376
+ averageItemLength: number;
1377
+ }) => void) | undefined> | undefined;
1378
+ onStartReached?: ((info: {
1379
+ distanceFromStart: number;
1380
+ }) => void) | react_native_reanimated.SharedValue<((info: {
1381
+ distanceFromStart: number;
1382
+ }) => void) | null | undefined> | null | undefined;
1383
+ onStartReachedThreshold?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
1384
+ progressViewOffset?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1385
+ renderScrollComponent?: ((props: react_native.ScrollViewProps) => React.ReactElement<react_native.ScrollViewProps>) | react_native_reanimated.SharedValue<((props: react_native.ScrollViewProps) => React.ReactElement<react_native.ScrollViewProps>) | undefined> | undefined;
1386
+ updateCellsBatchingPeriod?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1387
+ viewabilityConfigCallbackPairs?: react_native.ViewabilityConfigCallbackPairs | react_native_reanimated.SharedValue<react_native.ViewabilityConfigCallbackPairs | undefined> | undefined;
1388
+ windowSize?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
1389
+ CellRendererComponent?: react.ComponentType<react_native.CellRendererProps<unknown>> | react_native_reanimated.SharedValue<react.ComponentType<react_native.CellRendererProps<unknown>> | null | undefined> | null | undefined;
1390
+ } & {
1391
+ style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1392
+ contentContainerStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1393
+ indicatorStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<"default" | "black" | "white" | undefined>>;
1394
+ columnWrapperStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1395
+ ListFooterComponentStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1396
+ ListHeaderComponentStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
1397
+ } & {
1398
+ layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
1399
+ entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
1400
+ exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
1401
+ } & {
1402
+ sharedTransitionTag?: string;
1403
+ sharedTransitionStyle?: react_native_reanimated.SharedTransition;
1404
+ }> | undefined;
1405
+ } & react.RefAttributes<never>>>;
599
1406
  createConfig: ({ navigation: reactNavigation, route, ...config }: TransitionEventHandlersProps) => TransitionListeners;
1407
+ createScreenConfig: (config?: Omit<TransitionEventHandlersProps, "navigation" | "route">) => {
1408
+ listeners: (l: Any) => Partial<{
1409
+ [x: string]: _react_navigation_core.EventListenerCallback<_react_navigation_core.EventMapBase & _react_navigation_core.EventMapCore<Readonly<{
1410
+ key: string;
1411
+ index: number;
1412
+ routeNames: string[];
1413
+ history?: unknown[];
1414
+ routes: _react_navigation_routers.NavigationRoute<_react_navigation_routers.ParamListBase, string>[];
1415
+ type: string;
1416
+ stale: false;
1417
+ }>>, string, boolean | undefined>;
1418
+ focus: _react_navigation_core.EventListenerCallback<_react_navigation_core.EventMapBase & _react_navigation_core.EventMapCore<Readonly<{
1419
+ key: string;
1420
+ index: number;
1421
+ routeNames: string[];
1422
+ history?: unknown[];
1423
+ routes: _react_navigation_routers.NavigationRoute<_react_navigation_routers.ParamListBase, string>[];
1424
+ type: string;
1425
+ stale: false;
1426
+ }>>, "focus", unknown>;
1427
+ blur: _react_navigation_core.EventListenerCallback<_react_navigation_core.EventMapBase & _react_navigation_core.EventMapCore<Readonly<{
1428
+ key: string;
1429
+ index: number;
1430
+ routeNames: string[];
1431
+ history?: unknown[];
1432
+ routes: _react_navigation_routers.NavigationRoute<_react_navigation_routers.ParamListBase, string>[];
1433
+ type: string;
1434
+ stale: false;
1435
+ }>>, "blur", unknown>;
1436
+ state: _react_navigation_core.EventListenerCallback<_react_navigation_core.EventMapBase & _react_navigation_core.EventMapCore<Readonly<{
1437
+ key: string;
1438
+ index: number;
1439
+ routeNames: string[];
1440
+ history?: unknown[];
1441
+ routes: _react_navigation_routers.NavigationRoute<_react_navigation_routers.ParamListBase, string>[];
1442
+ type: string;
1443
+ stale: false;
1444
+ }>>, "state", unknown>;
1445
+ beforeRemove: _react_navigation_core.EventListenerCallback<_react_navigation_core.EventMapBase & _react_navigation_core.EventMapCore<Readonly<{
1446
+ key: string;
1447
+ index: number;
1448
+ routeNames: string[];
1449
+ history?: unknown[];
1450
+ routes: _react_navigation_routers.NavigationRoute<_react_navigation_routers.ParamListBase, string>[];
1451
+ type: string;
1452
+ stale: false;
1453
+ }>>, "beforeRemove", true>;
1454
+ }>;
1455
+ };
600
1456
  defaultScreenOptions: () => {
601
1457
  readonly presentation: "containedTransparentModal";
602
1458
  readonly headerShown: false;
@@ -604,6 +1460,14 @@ declare const _default: {
604
1460
  };
605
1461
  presets: typeof presets;
606
1462
  specs: typeof specs;
1463
+ /**
1464
+ * Create a transition aware component
1465
+ */
1466
+ createTransitionAwareComponent: typeof createTransitionAwareComponent;
1467
+ /**
1468
+ * Create a transition aware scrollable component
1469
+ */
1470
+ createTransitionAwareScrollable: typeof createTransitionAwareScrollable;
607
1471
  };
608
1472
 
609
1473
  export { _default as default, useScreenAnimation };