react-native-screen-transitions 1.0.1

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.
@@ -0,0 +1,609 @@
1
+ import { ScreenListeners, NavigationState, EventMapBase, RouteProp, ParamListBase } from '@react-navigation/native';
2
+ import * as react_native from 'react-native';
3
+ import { ScaledSize, View } from 'react-native';
4
+ import * as react_native_reanimated from 'react-native-reanimated';
5
+ import { SharedValue, StyleProps, WithSpringConfig, WithTimingConfig, AnimatedProps } from 'react-native-reanimated';
6
+ import { EdgeInsets } from 'react-native-safe-area-context';
7
+ import * as react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe from 'react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe';
8
+ import * as react from 'react';
9
+ import react__default, { ComponentType } from 'react';
10
+
11
+ type Any = any;
12
+ interface TransitionConfig {
13
+ /**
14
+ * The user-provided function to calculate styles based on animation progress.
15
+ */
16
+ screenStyleInterpolator?: ScreenStyleInterpolator;
17
+ /**
18
+ * The Reanimated animation config for opening and closing transitions.
19
+ */
20
+ transitionSpec?: TransitionSpec;
21
+ /**
22
+ * Whether the gesture is enabled.
23
+ */
24
+ gestureEnabled?: boolean;
25
+ /**
26
+ * The direction of the swipe gesture used to dismiss the screen.
27
+ */
28
+ gestureDirection?: GestureDirection | GestureDirection[];
29
+ /**
30
+ * How much the gesture's final velocity impacts the dismiss decision.
31
+ */
32
+ gestureVelocityImpact?: number;
33
+ /**
34
+ * Distance threshold for gesture recognition throughout the screen.
35
+ */
36
+ gestureResponseDistance?: number;
37
+ }
38
+ /**
39
+ * The comprehensive props object passed to a `ScreenStyleInterpolator` function.
40
+ * It contains all the necessary data to calculate styles for a transition.
41
+ */
42
+ interface ScreenInterpolationProps {
43
+ /** Values for the screen that is the focus of the transition (e.g., the one opening). */
44
+ current: {
45
+ /** The programmatic animation progress of the screen (a `SharedValue` from 0 to 1). */
46
+ progress: SharedValue<number>;
47
+ /** Live gesture values for the screen. */
48
+ gesture: GestureValues;
49
+ };
50
+ /** Values for the screen immediately behind the current one in the screen. */
51
+ next: {
52
+ /** The programmatic animation progress of the next screen. */
53
+ progress: SharedValue<number>;
54
+ /** Live gesture values for the next screen. */
55
+ gesture: GestureValues;
56
+ } | undefined;
57
+ /** Layout measurements for the screen. */
58
+ layouts: {
59
+ /** The `width` and `height` of the screen container. */
60
+ screen: ScaledSize;
61
+ };
62
+ /** The safe area insets for the screen. */
63
+ insets: EdgeInsets;
64
+ /** A flag indicating if the current route is in the process of closing. */
65
+ closing: boolean;
66
+ }
67
+ type GestureValues = {
68
+ /**
69
+ * A `SharedValue` indicating if the user's finger is on the screen (0 or 1).
70
+ */
71
+ isDragging: SharedValue<number>;
72
+ /**
73
+ * The live horizontal translation of the gesture.
74
+ */
75
+ x: SharedValue<number>;
76
+ /**
77
+ * The live vertical translation of the gesture.
78
+ */
79
+ y: SharedValue<number>;
80
+ /**
81
+ * The live normalized horizontal translation of the gesture (-1 to 1).
82
+ */
83
+ normalizedX: SharedValue<number>;
84
+ /**
85
+ * The live normalized vertical translation of the gesture (-1 to 1).
86
+ */
87
+ normalizedY: SharedValue<number>;
88
+ };
89
+ type ScreenStyleInterpolator = (props: ScreenInterpolationProps) => TransitionInterpolatedStyle;
90
+ type TransitionInterpolatedStyle = {
91
+ /**
92
+ * Animated style for the main screen view. Styles are only applied when Transition.View is present.
93
+ */
94
+ contentStyle?: StyleProps;
95
+ /**
96
+ * Animated style for a semi-transparent overlay. Styles are only applied when Transition.View is present.
97
+ */
98
+ overlayStyle?: StyleProps;
99
+ };
100
+ /**
101
+ * A Reanimated animation configuration object.
102
+ */
103
+ type AnimationConfig = WithSpringConfig | WithTimingConfig;
104
+ /**
105
+ * Defines separate animation configurations for opening and closing a screen.
106
+ */
107
+ interface TransitionSpec {
108
+ open?: AnimationConfig;
109
+ close?: AnimationConfig;
110
+ }
111
+ type GestureDirection = "horizontal" | "horizontal-inverted" | "vertical" | "vertical-inverted" | "bidirectional";
112
+ type TransitionListeners = ScreenListeners<NavigationState, EventMapBase>;
113
+
114
+ interface TransitionEventHandlersProps extends TransitionConfig {
115
+ navigation: Any;
116
+ route: RouteProp<ParamListBase, string>;
117
+ }
118
+
119
+ declare const SlideFromTop: (config?: Partial<TransitionConfig>) => TransitionConfig;
120
+ declare const ZoomIn: (config?: Partial<TransitionConfig>) => TransitionConfig;
121
+ declare const SlideFromBottom: (config?: Partial<TransitionConfig>) => TransitionConfig;
122
+ declare const DraggableCard: (config?: Partial<TransitionConfig>) => TransitionConfig;
123
+ declare const ElasticCard: (config?: Partial<TransitionConfig> & {
124
+ elasticFactor?: number;
125
+ }) => TransitionConfig;
126
+
127
+ declare const presets_DraggableCard: typeof DraggableCard;
128
+ declare const presets_ElasticCard: typeof ElasticCard;
129
+ declare const presets_SlideFromBottom: typeof SlideFromBottom;
130
+ declare const presets_SlideFromTop: typeof SlideFromTop;
131
+ declare const presets_ZoomIn: typeof ZoomIn;
132
+ declare namespace presets {
133
+ export { presets_DraggableCard as DraggableCard, presets_ElasticCard as ElasticCard, presets_SlideFromBottom as SlideFromBottom, presets_SlideFromTop as SlideFromTop, presets_ZoomIn as ZoomIn };
134
+ }
135
+
136
+ declare const DefaultSpec: WithSpringConfig;
137
+
138
+ declare const specs_DefaultSpec: typeof DefaultSpec;
139
+ declare namespace specs {
140
+ export { specs_DefaultSpec as DefaultSpec };
141
+ }
142
+
143
+ declare const useScreenAnimation: () => ScreenInterpolationProps;
144
+
145
+ declare function createTransitionComponent<P extends object>(Wrapped: ComponentType<P>): react__default.MemoExoticComponent<react__default.ForwardRefExoticComponent<AnimatedProps<P> & react__default.RefAttributes<react__default.ComponentRef<typeof Wrapped>>>>;
146
+
147
+ declare const _default: {
148
+ createTransitionComponent: typeof createTransitionComponent;
149
+ View: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
150
+ children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
151
+ hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
152
+ id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
153
+ needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
154
+ onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
155
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | react_native_reanimated.SharedValue<"box-none" | "none" | "box-only" | "auto" | undefined> | undefined;
156
+ removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
157
+ testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
158
+ nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
159
+ collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
160
+ collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
161
+ renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
162
+ focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
163
+ tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
164
+ shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
165
+ isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
166
+ hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
167
+ tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
168
+ tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
169
+ tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
170
+ tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
171
+ onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
172
+ onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
173
+ onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
174
+ onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
175
+ onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
176
+ onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
177
+ onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
178
+ onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
179
+ onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
180
+ onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
181
+ onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
182
+ onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
183
+ onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
184
+ onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
185
+ onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
186
+ onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
187
+ onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
188
+ onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
189
+ onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
190
+ onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
191
+ onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
192
+ onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
193
+ onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
194
+ onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
195
+ onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
196
+ onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
197
+ onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
198
+ onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
199
+ onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
200
+ accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
201
+ accessibilityActions?: readonly Readonly<{
202
+ name: react_native.AccessibilityActionName | string;
203
+ label?: string | undefined;
204
+ }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
205
+ name: react_native.AccessibilityActionName | string;
206
+ label?: string | undefined;
207
+ }>[] | undefined> | undefined;
208
+ accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
209
+ 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
210
+ accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
211
+ accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
212
+ 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
213
+ 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
214
+ 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
215
+ 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
216
+ 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
217
+ accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
218
+ accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
219
+ 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
220
+ 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
221
+ 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
222
+ 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
223
+ onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
224
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
225
+ 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
226
+ 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
227
+ role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
228
+ accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
229
+ 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
230
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
231
+ 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
232
+ accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
233
+ accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
234
+ onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
235
+ onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
236
+ onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
237
+ accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
238
+ accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
239
+ accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
240
+ accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
241
+ } & {
242
+ style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
243
+ } & {
244
+ layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
245
+ entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
246
+ exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
247
+ } & {
248
+ sharedTransitionTag?: string;
249
+ sharedTransitionStyle?: react_native_reanimated.SharedTransition;
250
+ } & {
251
+ animatedProps?: Partial<{
252
+ children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
253
+ hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
254
+ id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
255
+ needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
256
+ onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
257
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | react_native_reanimated.SharedValue<"box-none" | "none" | "box-only" | "auto" | undefined> | undefined;
258
+ removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
259
+ testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
260
+ nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
261
+ collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
262
+ collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
263
+ renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
264
+ focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
265
+ tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
266
+ shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
267
+ isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
268
+ hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
269
+ tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
270
+ tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
271
+ tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
272
+ tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
273
+ onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
274
+ onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
275
+ onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
276
+ onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
277
+ onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
278
+ onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
279
+ onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
280
+ onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
281
+ onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
282
+ onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
283
+ onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
284
+ onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
285
+ onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
286
+ onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
287
+ onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
288
+ onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
289
+ onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
290
+ onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
291
+ onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
292
+ onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
293
+ onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
294
+ onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
295
+ onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
296
+ onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
297
+ onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
298
+ onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
299
+ onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
300
+ onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
301
+ onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
302
+ accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
303
+ accessibilityActions?: readonly Readonly<{
304
+ name: react_native.AccessibilityActionName | string;
305
+ label?: string | undefined;
306
+ }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
307
+ name: react_native.AccessibilityActionName | string;
308
+ label?: string | undefined;
309
+ }>[] | undefined> | undefined;
310
+ accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
311
+ 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
312
+ accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
313
+ accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
314
+ 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
315
+ 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
316
+ 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
317
+ 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
318
+ 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
319
+ accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
320
+ accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
321
+ 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
322
+ 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
323
+ 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
324
+ 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
325
+ onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
326
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
327
+ 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
328
+ 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
329
+ role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
330
+ accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
331
+ 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
332
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
333
+ 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
334
+ accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
335
+ accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
336
+ onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
337
+ onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
338
+ onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
339
+ accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
340
+ accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
341
+ accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
342
+ accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
343
+ } & {
344
+ style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
345
+ } & {
346
+ layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
347
+ entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
348
+ exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
349
+ } & {
350
+ sharedTransitionTag?: string;
351
+ sharedTransitionStyle?: react_native_reanimated.SharedTransition;
352
+ }> | undefined;
353
+ } & react.RefAttributes<never>>>;
354
+ Pressable: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
355
+ children?: react.ReactNode | ((state: react_native.PressableStateCallbackType) => React.ReactNode) | react_native_reanimated.SharedValue<react.ReactNode | ((state: react_native.PressableStateCallbackType) => React.ReactNode)>;
356
+ hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
357
+ id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
358
+ needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
359
+ onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
360
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | react_native_reanimated.SharedValue<"box-none" | "none" | "box-only" | "auto" | undefined> | undefined;
361
+ removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
362
+ testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
363
+ nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
364
+ collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
365
+ collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
366
+ renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
367
+ focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
368
+ tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
369
+ shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
370
+ isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
371
+ hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
372
+ tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
373
+ tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
374
+ tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
375
+ tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
376
+ onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
377
+ onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
378
+ onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
379
+ onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
380
+ onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
381
+ onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
382
+ onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
383
+ onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
384
+ onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
385
+ onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
386
+ onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
387
+ onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
388
+ onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
389
+ onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
390
+ onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
391
+ onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
392
+ onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
393
+ onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
394
+ onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
395
+ onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
396
+ onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
397
+ onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
398
+ onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
399
+ onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
400
+ onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
401
+ onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
402
+ onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
403
+ onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
404
+ onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
405
+ accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
406
+ accessibilityActions?: readonly Readonly<{
407
+ name: react_native.AccessibilityActionName | string;
408
+ label?: string | undefined;
409
+ }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
410
+ name: react_native.AccessibilityActionName | string;
411
+ label?: string | undefined;
412
+ }>[] | undefined> | undefined;
413
+ accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
414
+ 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
415
+ accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
416
+ accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
417
+ 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
418
+ 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
419
+ 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
420
+ 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
421
+ 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
422
+ accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
423
+ accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
424
+ 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
425
+ 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
426
+ 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
427
+ 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
428
+ onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
429
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
430
+ 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
431
+ 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
432
+ role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
433
+ accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
434
+ 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
435
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
436
+ 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
437
+ accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
438
+ accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
439
+ onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
440
+ onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
441
+ onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
442
+ accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
443
+ accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
444
+ accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
445
+ accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
446
+ ref?: react.Ref<View> | react_native_reanimated.SharedValue<react.Ref<View> | undefined> | undefined;
447
+ key?: react.Key | react_native_reanimated.SharedValue<react.Key | null | undefined> | null | undefined;
448
+ onHoverIn?: ((event: react_native.MouseEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.MouseEvent) => void) | null | undefined> | null | undefined;
449
+ onHoverOut?: ((event: react_native.MouseEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.MouseEvent) => void) | null | undefined> | null | undefined;
450
+ onPress?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
451
+ onPressIn?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
452
+ onPressOut?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
453
+ onLongPress?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
454
+ onBlur?: ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | null | undefined> | null | undefined;
455
+ onFocus?: ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | null | undefined> | null | undefined;
456
+ cancelable?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
457
+ delayHoverIn?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
458
+ delayHoverOut?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
459
+ delayLongPress?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
460
+ disabled?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
461
+ pressRetentionOffset?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
462
+ android_disableSound?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
463
+ android_ripple?: react_native.PressableAndroidRippleConfig | react_native_reanimated.SharedValue<react_native.PressableAndroidRippleConfig | null | undefined> | null | undefined;
464
+ testOnly_pressed?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
465
+ unstable_pressDelay?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
466
+ } & {
467
+ style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle> | ((state: react_native.PressableStateCallbackType) => react_native.StyleProp<react_native.ViewStyle>)>>;
468
+ } & {
469
+ layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
470
+ entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
471
+ exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
472
+ } & {
473
+ sharedTransitionTag?: string;
474
+ sharedTransitionStyle?: react_native_reanimated.SharedTransition;
475
+ } & {
476
+ animatedProps?: Partial<{
477
+ children?: react.ReactNode | ((state: react_native.PressableStateCallbackType) => React.ReactNode) | react_native_reanimated.SharedValue<react.ReactNode | ((state: react_native.PressableStateCallbackType) => React.ReactNode)>;
478
+ hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
479
+ id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
480
+ needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
481
+ onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
482
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | react_native_reanimated.SharedValue<"box-none" | "none" | "box-only" | "auto" | undefined> | undefined;
483
+ removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
484
+ testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
485
+ nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
486
+ collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
487
+ collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
488
+ renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
489
+ focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
490
+ tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
491
+ shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
492
+ isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
493
+ hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
494
+ tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
495
+ tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
496
+ tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
497
+ tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
498
+ onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
499
+ onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
500
+ onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
501
+ onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
502
+ onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
503
+ onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
504
+ onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
505
+ onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
506
+ onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
507
+ onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
508
+ onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
509
+ onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
510
+ onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
511
+ onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
512
+ onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
513
+ onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
514
+ onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
515
+ onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
516
+ onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
517
+ onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
518
+ onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
519
+ onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
520
+ onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
521
+ onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
522
+ onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
523
+ onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
524
+ onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
525
+ onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
526
+ onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
527
+ accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
528
+ accessibilityActions?: readonly Readonly<{
529
+ name: react_native.AccessibilityActionName | string;
530
+ label?: string | undefined;
531
+ }>[] | react_native_reanimated.SharedValue<readonly Readonly<{
532
+ name: react_native.AccessibilityActionName | string;
533
+ label?: string | undefined;
534
+ }>[] | undefined> | undefined;
535
+ accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
536
+ 'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
537
+ accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
538
+ accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
539
+ 'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
540
+ 'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
541
+ 'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
542
+ 'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
543
+ 'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
544
+ accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
545
+ accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
546
+ 'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
547
+ 'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
548
+ 'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
549
+ 'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
550
+ onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
551
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
552
+ 'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
553
+ 'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
554
+ role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
555
+ accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
556
+ 'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
557
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
558
+ 'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
559
+ accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
560
+ accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
561
+ onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
562
+ onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
563
+ onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
564
+ accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
565
+ accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
566
+ accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
567
+ accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
568
+ ref?: react.Ref<View> | react_native_reanimated.SharedValue<react.Ref<View> | undefined> | undefined;
569
+ key?: react.Key | react_native_reanimated.SharedValue<react.Key | null | undefined> | null | undefined;
570
+ onHoverIn?: ((event: react_native.MouseEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.MouseEvent) => void) | null | undefined> | null | undefined;
571
+ onHoverOut?: ((event: react_native.MouseEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.MouseEvent) => void) | null | undefined> | null | undefined;
572
+ onPress?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
573
+ onPressIn?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
574
+ onPressOut?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
575
+ onLongPress?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
576
+ onBlur?: ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | null | undefined> | null | undefined;
577
+ onFocus?: ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | null | undefined> | null | undefined;
578
+ cancelable?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
579
+ delayHoverIn?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
580
+ delayHoverOut?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
581
+ delayLongPress?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
582
+ disabled?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
583
+ pressRetentionOffset?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
584
+ android_disableSound?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
585
+ android_ripple?: react_native.PressableAndroidRippleConfig | react_native_reanimated.SharedValue<react_native.PressableAndroidRippleConfig | null | undefined> | null | undefined;
586
+ testOnly_pressed?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
587
+ unstable_pressDelay?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
588
+ } & {
589
+ style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle> | ((state: react_native.PressableStateCallbackType) => react_native.StyleProp<react_native.ViewStyle>)>>;
590
+ } & {
591
+ layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
592
+ entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
593
+ exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
594
+ } & {
595
+ sharedTransitionTag?: string;
596
+ sharedTransitionStyle?: react_native_reanimated.SharedTransition;
597
+ }> | undefined;
598
+ } & react.RefAttributes<View | react.Component<react_native.PressableProps & react.RefAttributes<View>, any, any>>>>;
599
+ createConfig: ({ navigation: reactNavigation, route, ...config }: TransitionEventHandlersProps) => TransitionListeners;
600
+ defaultScreenOptions: () => {
601
+ readonly presentation: "containedTransparentModal";
602
+ readonly headerShown: false;
603
+ readonly animation: "none";
604
+ };
605
+ presets: typeof presets;
606
+ specs: typeof specs;
607
+ };
608
+
609
+ export { _default as default, useScreenAnimation };