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