react-native-external-keyboard 0.11.1 → 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.
Files changed (52) hide show
  1. package/android/src/main/java/com/externalkeyboard/ExternalKeyboardViewPackage.java +24 -22
  2. package/android/src/main/java/com/externalkeyboard/services/KeyboardService.java +4 -13
  3. package/android/src/newarch/TextInputFocusWrapperManagerSpec.java +0 -3
  4. package/lib/commonjs/nativeSpec/ExternalKeyboardLockViewNativeComponent.ts +1 -3
  5. package/lib/commonjs/nativeSpec/ExternalKeyboardViewNativeComponent.ts +6 -5
  6. package/lib/commonjs/nativeSpec/KeyboardFocusGroupNativeComponent.ts +5 -3
  7. package/lib/commonjs/nativeSpec/TextInputFocusWrapperNativeComponent.ts +5 -3
  8. package/lib/module/nativeSpec/ExternalKeyboardLockViewNativeComponent.ts +1 -3
  9. package/lib/module/nativeSpec/ExternalKeyboardViewNativeComponent.ts +6 -5
  10. package/lib/module/nativeSpec/KeyboardFocusGroupNativeComponent.ts +5 -3
  11. package/lib/module/nativeSpec/TextInputFocusWrapperNativeComponent.ts +5 -3
  12. package/lib/typescript/src/components/BaseKeyboardView/BaseKeyboardView.d.ts +129 -3
  13. package/lib/typescript/src/components/BaseKeyboardView/BaseKeyboardView.d.ts.map +1 -1
  14. package/lib/typescript/src/components/KeyboardExtendedInput/KeyboardExtendedInput.d.ts +372 -6
  15. package/lib/typescript/src/components/KeyboardExtendedInput/KeyboardExtendedInput.d.ts.map +1 -1
  16. package/lib/typescript/src/components/KeyboardFocusLock/FocusFrame/FocusFrame.d.ts +1 -1
  17. package/lib/typescript/src/components/KeyboardFocusLock/FocusFrame/FocusFrame.d.ts.map +1 -1
  18. package/lib/typescript/src/components/KeyboardFocusLock/FocusTrap/FocusTrap.d.ts +1 -1
  19. package/lib/typescript/src/components/KeyboardFocusLock/FocusTrap/FocusTrap.d.ts.map +1 -1
  20. package/lib/typescript/src/components/KeyboardFocusView/KeyboardFocusView.d.ts +124 -1
  21. package/lib/typescript/src/components/KeyboardFocusView/KeyboardFocusView.d.ts.map +1 -1
  22. package/lib/typescript/src/components/Touchable/Pressable.d.ts +158 -1
  23. package/lib/typescript/src/components/Touchable/Pressable.d.ts.map +1 -1
  24. package/lib/typescript/src/context/OrderFocusContext.d.ts +1 -1
  25. package/lib/typescript/src/context/OrderFocusContext.d.ts.map +1 -1
  26. package/lib/typescript/src/index.d.ts +656 -9
  27. package/lib/typescript/src/index.d.ts.map +1 -1
  28. package/lib/typescript/src/nativeSpec/ExternalKeyboardLockViewNativeComponent.d.ts +2 -2
  29. package/lib/typescript/src/nativeSpec/ExternalKeyboardLockViewNativeComponent.d.ts.map +1 -1
  30. package/lib/typescript/src/nativeSpec/ExternalKeyboardViewNativeComponent.d.ts +2 -2
  31. package/lib/typescript/src/nativeSpec/ExternalKeyboardViewNativeComponent.d.ts.map +1 -1
  32. package/lib/typescript/src/nativeSpec/KeyboardFocusGroupNativeComponent.d.ts +2 -2
  33. package/lib/typescript/src/nativeSpec/KeyboardFocusGroupNativeComponent.d.ts.map +1 -1
  34. package/lib/typescript/src/nativeSpec/NativeExternalKeyboardModule.d.ts +1 -1
  35. package/lib/typescript/src/nativeSpec/TextInputFocusWrapperNativeComponent.d.ts +2 -2
  36. package/lib/typescript/src/nativeSpec/TextInputFocusWrapperNativeComponent.d.ts.map +1 -1
  37. package/lib/typescript/src/types/focus.types.d.ts +1 -10
  38. package/lib/typescript/src/types/focus.types.d.ts.map +1 -1
  39. package/lib/typescript/src/utils/useFocusStyle.d.ts +1005 -3
  40. package/lib/typescript/src/utils/useFocusStyle.d.ts.map +1 -1
  41. package/lib/typescript/src/utils/useKeyboardFocusContainer.d.ts +867 -3
  42. package/lib/typescript/src/utils/useKeyboardFocusContainer.d.ts.map +1 -1
  43. package/lib/typescript/src/utils/useRenderedChildren.d.ts +1 -1
  44. package/lib/typescript/src/utils/useRenderedChildren.d.ts.map +1 -1
  45. package/lib/typescript/src/utils/withKeyboardFocus.d.ts +6 -2
  46. package/lib/typescript/src/utils/withKeyboardFocus.d.ts.map +1 -1
  47. package/package.json +4 -7
  48. package/src/nativeSpec/ExternalKeyboardLockViewNativeComponent.ts +1 -3
  49. package/src/nativeSpec/ExternalKeyboardViewNativeComponent.ts +6 -5
  50. package/src/nativeSpec/KeyboardFocusGroupNativeComponent.ts +5 -3
  51. package/src/nativeSpec/TextInputFocusWrapperNativeComponent.ts +5 -3
  52. package/src/types/focus.types.ts +1 -10
@@ -19,12 +19,876 @@ export type UseKeyboardFocusContainerProps<TPress extends AnyPressHandler = AnyP
19
19
  export declare const useKeyboardFocusContainer: <TPress extends AnyPressHandler = AnyPressHandler, TKeyOnlyPress extends AnyPressHandler = AnyPressHandler>({ focusStyle, containerFocusStyle, onFocusChange, style, pressedStyleSignature, onKeyUpPress, onKeyDownPress, onPress, onLongPress, onPressIn, onPressOut, triggerCodes, androidKeyboardPressState, }: UseKeyboardFocusContainerProps<TPress, TKeyOnlyPress>) => {
20
20
  focused: boolean;
21
21
  keyboardPressed: boolean;
22
- containerFocusedStyle: import("react-native").StyleProp<import("react-native").ViewStyle>;
22
+ containerFocusedStyle: import("react-native").StyleProp<Readonly<Omit<Readonly<Omit<Readonly<{
23
+ display?: "none" | "flex" | "contents";
24
+ width?: import("react-native").DimensionValue;
25
+ height?: import("react-native").DimensionValue;
26
+ bottom?: import("react-native").DimensionValue;
27
+ end?: import("react-native").DimensionValue;
28
+ left?: import("react-native").DimensionValue;
29
+ right?: import("react-native").DimensionValue;
30
+ start?: import("react-native").DimensionValue;
31
+ top?: import("react-native").DimensionValue;
32
+ inset?: import("react-native").DimensionValue;
33
+ insetBlock?: import("react-native").DimensionValue;
34
+ insetBlockEnd?: import("react-native").DimensionValue;
35
+ insetBlockStart?: import("react-native").DimensionValue;
36
+ insetInline?: import("react-native").DimensionValue;
37
+ insetInlineEnd?: import("react-native").DimensionValue;
38
+ insetInlineStart?: import("react-native").DimensionValue;
39
+ minWidth?: import("react-native").DimensionValue;
40
+ maxWidth?: import("react-native").DimensionValue;
41
+ minHeight?: import("react-native").DimensionValue;
42
+ maxHeight?: import("react-native").DimensionValue;
43
+ margin?: import("react-native").DimensionValue;
44
+ marginBlock?: import("react-native").DimensionValue;
45
+ marginBlockEnd?: import("react-native").DimensionValue;
46
+ marginBlockStart?: import("react-native").DimensionValue;
47
+ marginBottom?: import("react-native").DimensionValue;
48
+ marginEnd?: import("react-native").DimensionValue;
49
+ marginHorizontal?: import("react-native").DimensionValue;
50
+ marginInline?: import("react-native").DimensionValue;
51
+ marginInlineEnd?: import("react-native").DimensionValue;
52
+ marginInlineStart?: import("react-native").DimensionValue;
53
+ marginLeft?: import("react-native").DimensionValue;
54
+ marginRight?: import("react-native").DimensionValue;
55
+ marginStart?: import("react-native").DimensionValue;
56
+ marginTop?: import("react-native").DimensionValue;
57
+ marginVertical?: import("react-native").DimensionValue;
58
+ padding?: import("react-native").DimensionValue;
59
+ paddingBlock?: import("react-native").DimensionValue;
60
+ paddingBlockEnd?: import("react-native").DimensionValue;
61
+ paddingBlockStart?: import("react-native").DimensionValue;
62
+ paddingBottom?: import("react-native").DimensionValue;
63
+ paddingEnd?: import("react-native").DimensionValue;
64
+ paddingHorizontal?: import("react-native").DimensionValue;
65
+ paddingInline?: import("react-native").DimensionValue;
66
+ paddingInlineEnd?: import("react-native").DimensionValue;
67
+ paddingInlineStart?: import("react-native").DimensionValue;
68
+ paddingLeft?: import("react-native").DimensionValue;
69
+ paddingRight?: import("react-native").DimensionValue;
70
+ paddingStart?: import("react-native").DimensionValue;
71
+ paddingTop?: import("react-native").DimensionValue;
72
+ paddingVertical?: import("react-native").DimensionValue;
73
+ borderWidth?: number;
74
+ borderBottomWidth?: number;
75
+ borderEndWidth?: number;
76
+ borderLeftWidth?: number;
77
+ borderRightWidth?: number;
78
+ borderStartWidth?: number;
79
+ borderTopWidth?: number;
80
+ position?: "absolute" | "relative" | "static";
81
+ flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
82
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse";
83
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
84
+ alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
85
+ alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
86
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
87
+ overflow?: "visible" | "hidden" | "scroll";
88
+ flex?: number;
89
+ flexGrow?: number;
90
+ flexShrink?: number;
91
+ flexBasis?: number | string;
92
+ aspectRatio?: number | string;
93
+ boxSizing?: "border-box" | "content-box";
94
+ zIndex?: number;
95
+ direction?: "inherit" | "ltr" | "rtl";
96
+ rowGap?: number | string;
97
+ columnGap?: number | string;
98
+ gap?: number | string;
99
+ }>, "pointerEvents" | "filter" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<Omit<Readonly<{
100
+ shadowColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
101
+ shadowOffset?: Readonly<{
102
+ width?: number;
103
+ height?: number;
104
+ }>;
105
+ shadowOpacity?: number;
106
+ shadowRadius?: number;
107
+ }>, never> & Omit<Readonly<{}>, never>>, "pointerEvents" | "filter" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
108
+ transform?: ReadonlyArray<Readonly<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MaximumOneOf<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MergeUnion<{
109
+ readonly perspective: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
110
+ } | {
111
+ readonly rotate: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
112
+ } | {
113
+ readonly rotateX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
114
+ } | {
115
+ readonly rotateY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
116
+ } | {
117
+ readonly rotateZ: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
118
+ } | {
119
+ readonly scale: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
120
+ } | {
121
+ readonly scaleX: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
122
+ } | {
123
+ readonly scaleY: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
124
+ } | {
125
+ readonly translateX: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
126
+ } | {
127
+ readonly translateY: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
128
+ } | {
129
+ readonly translate: [number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node, number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node] | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
130
+ } | {
131
+ readonly skewX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
132
+ } | {
133
+ readonly skewY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
134
+ } | {
135
+ readonly matrix: ReadonlyArray<number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node> | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
136
+ }>>>> | string;
137
+ transformOrigin?: [string | number, string | number, string | number] | string;
138
+ }>, "pointerEvents" | "filter" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
139
+ backfaceVisibility?: "visible" | "hidden";
140
+ backgroundColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
141
+ borderColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
142
+ borderCurve?: "circular" | "continuous";
143
+ borderBottomColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
144
+ borderEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
145
+ borderLeftColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
146
+ borderRightColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
147
+ borderStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
148
+ borderTopColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
149
+ borderBlockColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
150
+ borderBlockEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
151
+ borderBlockStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
152
+ borderRadius?: number | string;
153
+ borderBottomEndRadius?: number | string;
154
+ borderBottomLeftRadius?: number | string;
155
+ borderBottomRightRadius?: number | string;
156
+ borderBottomStartRadius?: number | string;
157
+ borderEndEndRadius?: number | string;
158
+ borderEndStartRadius?: number | string;
159
+ borderStartEndRadius?: number | string;
160
+ borderStartStartRadius?: number | string;
161
+ borderTopEndRadius?: number | string;
162
+ borderTopLeftRadius?: number | string;
163
+ borderTopRightRadius?: number | string;
164
+ borderTopStartRadius?: number | string;
165
+ borderStyle?: "solid" | "dotted" | "dashed";
166
+ borderWidth?: number;
167
+ borderBottomWidth?: number;
168
+ borderEndWidth?: number;
169
+ borderLeftWidth?: number;
170
+ borderRightWidth?: number;
171
+ borderStartWidth?: number;
172
+ borderTopWidth?: number;
173
+ opacity?: number;
174
+ outlineColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
175
+ outlineOffset?: number;
176
+ outlineStyle?: "solid" | "dotted" | "dashed";
177
+ outlineWidth?: number;
178
+ elevation?: number;
179
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only";
180
+ cursor?: import("react-native").CursorValue;
181
+ boxShadow?: ReadonlyArray<import("react-native").BoxShadowValue> | string;
182
+ filter?: ReadonlyArray<import("react-native").FilterFunction> | string;
183
+ mixBlendMode?: "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
184
+ experimental_backgroundImage?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundImageValue> | string;
185
+ experimental_backgroundSize?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundSizeValue> | string;
186
+ experimental_backgroundPosition?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundPositionValue> | string;
187
+ experimental_backgroundRepeat?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundRepeatValue> | string;
188
+ isolation?: "auto" | "isolate";
189
+ }>, never>>, never> & Omit<Readonly<{}>, never>>>;
23
190
  componentStyleViewStyle: (({ pressed }: {
24
191
  pressed: boolean;
25
- }) => import("react-native").StyleProp<import("react-native").ViewStyle>[]) | (import("react-native").StyleProp<import("react-native").ViewStyle> | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp<import("react-native").ViewStyle>))[] | undefined;
192
+ }) => (false | void | "" | Readonly<Omit<Readonly<Omit<Readonly<{
193
+ display?: "none" | "flex" | "contents";
194
+ width?: import("react-native").DimensionValue;
195
+ height?: import("react-native").DimensionValue;
196
+ bottom?: import("react-native").DimensionValue;
197
+ end?: import("react-native").DimensionValue;
198
+ left?: import("react-native").DimensionValue;
199
+ right?: import("react-native").DimensionValue;
200
+ start?: import("react-native").DimensionValue;
201
+ top?: import("react-native").DimensionValue;
202
+ inset?: import("react-native").DimensionValue;
203
+ insetBlock?: import("react-native").DimensionValue;
204
+ insetBlockEnd?: import("react-native").DimensionValue;
205
+ insetBlockStart?: import("react-native").DimensionValue;
206
+ insetInline?: import("react-native").DimensionValue;
207
+ insetInlineEnd?: import("react-native").DimensionValue;
208
+ insetInlineStart?: import("react-native").DimensionValue;
209
+ minWidth?: import("react-native").DimensionValue;
210
+ maxWidth?: import("react-native").DimensionValue;
211
+ minHeight?: import("react-native").DimensionValue;
212
+ maxHeight?: import("react-native").DimensionValue;
213
+ margin?: import("react-native").DimensionValue;
214
+ marginBlock?: import("react-native").DimensionValue;
215
+ marginBlockEnd?: import("react-native").DimensionValue;
216
+ marginBlockStart?: import("react-native").DimensionValue;
217
+ marginBottom?: import("react-native").DimensionValue;
218
+ marginEnd?: import("react-native").DimensionValue;
219
+ marginHorizontal?: import("react-native").DimensionValue;
220
+ marginInline?: import("react-native").DimensionValue;
221
+ marginInlineEnd?: import("react-native").DimensionValue;
222
+ marginInlineStart?: import("react-native").DimensionValue;
223
+ marginLeft?: import("react-native").DimensionValue;
224
+ marginRight?: import("react-native").DimensionValue;
225
+ marginStart?: import("react-native").DimensionValue;
226
+ marginTop?: import("react-native").DimensionValue;
227
+ marginVertical?: import("react-native").DimensionValue;
228
+ padding?: import("react-native").DimensionValue;
229
+ paddingBlock?: import("react-native").DimensionValue;
230
+ paddingBlockEnd?: import("react-native").DimensionValue;
231
+ paddingBlockStart?: import("react-native").DimensionValue;
232
+ paddingBottom?: import("react-native").DimensionValue;
233
+ paddingEnd?: import("react-native").DimensionValue;
234
+ paddingHorizontal?: import("react-native").DimensionValue;
235
+ paddingInline?: import("react-native").DimensionValue;
236
+ paddingInlineEnd?: import("react-native").DimensionValue;
237
+ paddingInlineStart?: import("react-native").DimensionValue;
238
+ paddingLeft?: import("react-native").DimensionValue;
239
+ paddingRight?: import("react-native").DimensionValue;
240
+ paddingStart?: import("react-native").DimensionValue;
241
+ paddingTop?: import("react-native").DimensionValue;
242
+ paddingVertical?: import("react-native").DimensionValue;
243
+ borderWidth?: number;
244
+ borderBottomWidth?: number;
245
+ borderEndWidth?: number;
246
+ borderLeftWidth?: number;
247
+ borderRightWidth?: number;
248
+ borderStartWidth?: number;
249
+ borderTopWidth?: number;
250
+ position?: "absolute" | "relative" | "static";
251
+ flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
252
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse";
253
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
254
+ alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
255
+ alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
256
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
257
+ overflow?: "visible" | "hidden" | "scroll";
258
+ flex?: number;
259
+ flexGrow?: number;
260
+ flexShrink?: number;
261
+ flexBasis?: number | string;
262
+ aspectRatio?: number | string;
263
+ boxSizing?: "border-box" | "content-box";
264
+ zIndex?: number;
265
+ direction?: "inherit" | "ltr" | "rtl";
266
+ rowGap?: number | string;
267
+ columnGap?: number | string;
268
+ gap?: number | string;
269
+ }>, "pointerEvents" | "filter" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<Omit<Readonly<{
270
+ shadowColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
271
+ shadowOffset?: Readonly<{
272
+ width?: number;
273
+ height?: number;
274
+ }>;
275
+ shadowOpacity?: number;
276
+ shadowRadius?: number;
277
+ }>, never> & Omit<Readonly<{}>, never>>, "pointerEvents" | "filter" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
278
+ transform?: ReadonlyArray<Readonly<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MaximumOneOf<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MergeUnion<{
279
+ readonly perspective: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
280
+ } | {
281
+ readonly rotate: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
282
+ } | {
283
+ readonly rotateX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
284
+ } | {
285
+ readonly rotateY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
286
+ } | {
287
+ readonly rotateZ: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
288
+ } | {
289
+ readonly scale: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
290
+ } | {
291
+ readonly scaleX: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
292
+ } | {
293
+ readonly scaleY: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
294
+ } | {
295
+ readonly translateX: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
296
+ } | {
297
+ readonly translateY: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
298
+ } | {
299
+ readonly translate: [number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node, number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node] | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
300
+ } | {
301
+ readonly skewX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
302
+ } | {
303
+ readonly skewY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
304
+ } | {
305
+ readonly matrix: ReadonlyArray<number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node> | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
306
+ }>>>> | string;
307
+ transformOrigin?: [string | number, string | number, string | number] | string;
308
+ }>, "pointerEvents" | "filter" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
309
+ backfaceVisibility?: "visible" | "hidden";
310
+ backgroundColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
311
+ borderColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
312
+ borderCurve?: "circular" | "continuous";
313
+ borderBottomColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
314
+ borderEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
315
+ borderLeftColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
316
+ borderRightColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
317
+ borderStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
318
+ borderTopColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
319
+ borderBlockColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
320
+ borderBlockEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
321
+ borderBlockStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
322
+ borderRadius?: number | string;
323
+ borderBottomEndRadius?: number | string;
324
+ borderBottomLeftRadius?: number | string;
325
+ borderBottomRightRadius?: number | string;
326
+ borderBottomStartRadius?: number | string;
327
+ borderEndEndRadius?: number | string;
328
+ borderEndStartRadius?: number | string;
329
+ borderStartEndRadius?: number | string;
330
+ borderStartStartRadius?: number | string;
331
+ borderTopEndRadius?: number | string;
332
+ borderTopLeftRadius?: number | string;
333
+ borderTopRightRadius?: number | string;
334
+ borderTopStartRadius?: number | string;
335
+ borderStyle?: "solid" | "dotted" | "dashed";
336
+ borderWidth?: number;
337
+ borderBottomWidth?: number;
338
+ borderEndWidth?: number;
339
+ borderLeftWidth?: number;
340
+ borderRightWidth?: number;
341
+ borderStartWidth?: number;
342
+ borderTopWidth?: number;
343
+ opacity?: number;
344
+ outlineColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
345
+ outlineOffset?: number;
346
+ outlineStyle?: "solid" | "dotted" | "dashed";
347
+ outlineWidth?: number;
348
+ elevation?: number;
349
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only";
350
+ cursor?: import("react-native").CursorValue;
351
+ boxShadow?: ReadonlyArray<import("react-native").BoxShadowValue> | string;
352
+ filter?: ReadonlyArray<import("react-native").FilterFunction> | string;
353
+ mixBlendMode?: "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
354
+ experimental_backgroundImage?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundImageValue> | string;
355
+ experimental_backgroundSize?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundSizeValue> | string;
356
+ experimental_backgroundPosition?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundPositionValue> | string;
357
+ experimental_backgroundRepeat?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundRepeatValue> | string;
358
+ isolation?: "auto" | "isolate";
359
+ }>, never>>, never> & Omit<Readonly<{}>, never>> | readonly import("react-native").StyleProp<Readonly<Omit<Readonly<Omit<Readonly<{
360
+ display?: "none" | "flex" | "contents";
361
+ width?: import("react-native").DimensionValue;
362
+ height?: import("react-native").DimensionValue;
363
+ bottom?: import("react-native").DimensionValue;
364
+ end?: import("react-native").DimensionValue;
365
+ left?: import("react-native").DimensionValue;
366
+ right?: import("react-native").DimensionValue;
367
+ start?: import("react-native").DimensionValue;
368
+ top?: import("react-native").DimensionValue;
369
+ inset?: import("react-native").DimensionValue;
370
+ insetBlock?: import("react-native").DimensionValue;
371
+ insetBlockEnd?: import("react-native").DimensionValue;
372
+ insetBlockStart?: import("react-native").DimensionValue;
373
+ insetInline?: import("react-native").DimensionValue;
374
+ insetInlineEnd?: import("react-native").DimensionValue;
375
+ insetInlineStart?: import("react-native").DimensionValue;
376
+ minWidth?: import("react-native").DimensionValue;
377
+ maxWidth?: import("react-native").DimensionValue;
378
+ minHeight?: import("react-native").DimensionValue;
379
+ maxHeight?: import("react-native").DimensionValue;
380
+ margin?: import("react-native").DimensionValue;
381
+ marginBlock?: import("react-native").DimensionValue;
382
+ marginBlockEnd?: import("react-native").DimensionValue;
383
+ marginBlockStart?: import("react-native").DimensionValue;
384
+ marginBottom?: import("react-native").DimensionValue;
385
+ marginEnd?: import("react-native").DimensionValue;
386
+ marginHorizontal?: import("react-native").DimensionValue;
387
+ marginInline?: import("react-native").DimensionValue;
388
+ marginInlineEnd?: import("react-native").DimensionValue;
389
+ marginInlineStart?: import("react-native").DimensionValue;
390
+ marginLeft?: import("react-native").DimensionValue;
391
+ marginRight?: import("react-native").DimensionValue;
392
+ marginStart?: import("react-native").DimensionValue;
393
+ marginTop?: import("react-native").DimensionValue;
394
+ marginVertical?: import("react-native").DimensionValue;
395
+ padding?: import("react-native").DimensionValue;
396
+ paddingBlock?: import("react-native").DimensionValue;
397
+ paddingBlockEnd?: import("react-native").DimensionValue;
398
+ paddingBlockStart?: import("react-native").DimensionValue;
399
+ paddingBottom?: import("react-native").DimensionValue;
400
+ paddingEnd?: import("react-native").DimensionValue;
401
+ paddingHorizontal?: import("react-native").DimensionValue;
402
+ paddingInline?: import("react-native").DimensionValue;
403
+ paddingInlineEnd?: import("react-native").DimensionValue;
404
+ paddingInlineStart?: import("react-native").DimensionValue;
405
+ paddingLeft?: import("react-native").DimensionValue;
406
+ paddingRight?: import("react-native").DimensionValue;
407
+ paddingStart?: import("react-native").DimensionValue;
408
+ paddingTop?: import("react-native").DimensionValue;
409
+ paddingVertical?: import("react-native").DimensionValue;
410
+ borderWidth?: number;
411
+ borderBottomWidth?: number;
412
+ borderEndWidth?: number;
413
+ borderLeftWidth?: number;
414
+ borderRightWidth?: number;
415
+ borderStartWidth?: number;
416
+ borderTopWidth?: number;
417
+ position?: "absolute" | "relative" | "static";
418
+ flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
419
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse";
420
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
421
+ alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
422
+ alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
423
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
424
+ overflow?: "visible" | "hidden" | "scroll";
425
+ flex?: number;
426
+ flexGrow?: number;
427
+ flexShrink?: number;
428
+ flexBasis?: number | string;
429
+ aspectRatio?: number | string;
430
+ boxSizing?: "border-box" | "content-box";
431
+ zIndex?: number;
432
+ direction?: "inherit" | "ltr" | "rtl";
433
+ rowGap?: number | string;
434
+ columnGap?: number | string;
435
+ gap?: number | string;
436
+ }>, "pointerEvents" | "filter" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<Omit<Readonly<{
437
+ shadowColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
438
+ shadowOffset?: Readonly<{
439
+ width?: number;
440
+ height?: number;
441
+ }>;
442
+ shadowOpacity?: number;
443
+ shadowRadius?: number;
444
+ }>, never> & Omit<Readonly<{}>, never>>, "pointerEvents" | "filter" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
445
+ transform?: ReadonlyArray<Readonly<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MaximumOneOf<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MergeUnion<{
446
+ readonly perspective: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
447
+ } | {
448
+ readonly rotate: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
449
+ } | {
450
+ readonly rotateX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
451
+ } | {
452
+ readonly rotateY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
453
+ } | {
454
+ readonly rotateZ: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
455
+ } | {
456
+ readonly scale: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
457
+ } | {
458
+ readonly scaleX: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
459
+ } | {
460
+ readonly scaleY: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
461
+ } | {
462
+ readonly translateX: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
463
+ } | {
464
+ readonly translateY: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
465
+ } | {
466
+ readonly translate: [number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node, number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node] | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
467
+ } | {
468
+ readonly skewX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
469
+ } | {
470
+ readonly skewY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
471
+ } | {
472
+ readonly matrix: ReadonlyArray<number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node> | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
473
+ }>>>> | string;
474
+ transformOrigin?: [string | number, string | number, string | number] | string;
475
+ }>, "pointerEvents" | "filter" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
476
+ backfaceVisibility?: "visible" | "hidden";
477
+ backgroundColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
478
+ borderColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
479
+ borderCurve?: "circular" | "continuous";
480
+ borderBottomColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
481
+ borderEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
482
+ borderLeftColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
483
+ borderRightColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
484
+ borderStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
485
+ borderTopColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
486
+ borderBlockColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
487
+ borderBlockEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
488
+ borderBlockStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
489
+ borderRadius?: number | string;
490
+ borderBottomEndRadius?: number | string;
491
+ borderBottomLeftRadius?: number | string;
492
+ borderBottomRightRadius?: number | string;
493
+ borderBottomStartRadius?: number | string;
494
+ borderEndEndRadius?: number | string;
495
+ borderEndStartRadius?: number | string;
496
+ borderStartEndRadius?: number | string;
497
+ borderStartStartRadius?: number | string;
498
+ borderTopEndRadius?: number | string;
499
+ borderTopLeftRadius?: number | string;
500
+ borderTopRightRadius?: number | string;
501
+ borderTopStartRadius?: number | string;
502
+ borderStyle?: "solid" | "dotted" | "dashed";
503
+ borderWidth?: number;
504
+ borderBottomWidth?: number;
505
+ borderEndWidth?: number;
506
+ borderLeftWidth?: number;
507
+ borderRightWidth?: number;
508
+ borderStartWidth?: number;
509
+ borderTopWidth?: number;
510
+ opacity?: number;
511
+ outlineColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
512
+ outlineOffset?: number;
513
+ outlineStyle?: "solid" | "dotted" | "dashed";
514
+ outlineWidth?: number;
515
+ elevation?: number;
516
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only";
517
+ cursor?: import("react-native").CursorValue;
518
+ boxShadow?: ReadonlyArray<import("react-native").BoxShadowValue> | string;
519
+ filter?: ReadonlyArray<import("react-native").FilterFunction> | string;
520
+ mixBlendMode?: "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
521
+ experimental_backgroundImage?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundImageValue> | string;
522
+ experimental_backgroundSize?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundSizeValue> | string;
523
+ experimental_backgroundPosition?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundPositionValue> | string;
524
+ experimental_backgroundRepeat?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundRepeatValue> | string;
525
+ isolation?: "auto" | "isolate";
526
+ }>, never>>, never> & Omit<Readonly<{}>, never>>>[] | null)[]) | (false | void | "" | Readonly<Omit<Readonly<Omit<Readonly<{
527
+ display?: "none" | "flex" | "contents";
528
+ width?: import("react-native").DimensionValue;
529
+ height?: import("react-native").DimensionValue;
530
+ bottom?: import("react-native").DimensionValue;
531
+ end?: import("react-native").DimensionValue;
532
+ left?: import("react-native").DimensionValue;
533
+ right?: import("react-native").DimensionValue;
534
+ start?: import("react-native").DimensionValue;
535
+ top?: import("react-native").DimensionValue;
536
+ inset?: import("react-native").DimensionValue;
537
+ insetBlock?: import("react-native").DimensionValue;
538
+ insetBlockEnd?: import("react-native").DimensionValue;
539
+ insetBlockStart?: import("react-native").DimensionValue;
540
+ insetInline?: import("react-native").DimensionValue;
541
+ insetInlineEnd?: import("react-native").DimensionValue;
542
+ insetInlineStart?: import("react-native").DimensionValue;
543
+ minWidth?: import("react-native").DimensionValue;
544
+ maxWidth?: import("react-native").DimensionValue;
545
+ minHeight?: import("react-native").DimensionValue;
546
+ maxHeight?: import("react-native").DimensionValue;
547
+ margin?: import("react-native").DimensionValue;
548
+ marginBlock?: import("react-native").DimensionValue;
549
+ marginBlockEnd?: import("react-native").DimensionValue;
550
+ marginBlockStart?: import("react-native").DimensionValue;
551
+ marginBottom?: import("react-native").DimensionValue;
552
+ marginEnd?: import("react-native").DimensionValue;
553
+ marginHorizontal?: import("react-native").DimensionValue;
554
+ marginInline?: import("react-native").DimensionValue;
555
+ marginInlineEnd?: import("react-native").DimensionValue;
556
+ marginInlineStart?: import("react-native").DimensionValue;
557
+ marginLeft?: import("react-native").DimensionValue;
558
+ marginRight?: import("react-native").DimensionValue;
559
+ marginStart?: import("react-native").DimensionValue;
560
+ marginTop?: import("react-native").DimensionValue;
561
+ marginVertical?: import("react-native").DimensionValue;
562
+ padding?: import("react-native").DimensionValue;
563
+ paddingBlock?: import("react-native").DimensionValue;
564
+ paddingBlockEnd?: import("react-native").DimensionValue;
565
+ paddingBlockStart?: import("react-native").DimensionValue;
566
+ paddingBottom?: import("react-native").DimensionValue;
567
+ paddingEnd?: import("react-native").DimensionValue;
568
+ paddingHorizontal?: import("react-native").DimensionValue;
569
+ paddingInline?: import("react-native").DimensionValue;
570
+ paddingInlineEnd?: import("react-native").DimensionValue;
571
+ paddingInlineStart?: import("react-native").DimensionValue;
572
+ paddingLeft?: import("react-native").DimensionValue;
573
+ paddingRight?: import("react-native").DimensionValue;
574
+ paddingStart?: import("react-native").DimensionValue;
575
+ paddingTop?: import("react-native").DimensionValue;
576
+ paddingVertical?: import("react-native").DimensionValue;
577
+ borderWidth?: number;
578
+ borderBottomWidth?: number;
579
+ borderEndWidth?: number;
580
+ borderLeftWidth?: number;
581
+ borderRightWidth?: number;
582
+ borderStartWidth?: number;
583
+ borderTopWidth?: number;
584
+ position?: "absolute" | "relative" | "static";
585
+ flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
586
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse";
587
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
588
+ alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
589
+ alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
590
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
591
+ overflow?: "visible" | "hidden" | "scroll";
592
+ flex?: number;
593
+ flexGrow?: number;
594
+ flexShrink?: number;
595
+ flexBasis?: number | string;
596
+ aspectRatio?: number | string;
597
+ boxSizing?: "border-box" | "content-box";
598
+ zIndex?: number;
599
+ direction?: "inherit" | "ltr" | "rtl";
600
+ rowGap?: number | string;
601
+ columnGap?: number | string;
602
+ gap?: number | string;
603
+ }>, "pointerEvents" | "filter" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<Omit<Readonly<{
604
+ shadowColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
605
+ shadowOffset?: Readonly<{
606
+ width?: number;
607
+ height?: number;
608
+ }>;
609
+ shadowOpacity?: number;
610
+ shadowRadius?: number;
611
+ }>, never> & Omit<Readonly<{}>, never>>, "pointerEvents" | "filter" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
612
+ transform?: ReadonlyArray<Readonly<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MaximumOneOf<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MergeUnion<{
613
+ readonly perspective: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
614
+ } | {
615
+ readonly rotate: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
616
+ } | {
617
+ readonly rotateX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
618
+ } | {
619
+ readonly rotateY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
620
+ } | {
621
+ readonly rotateZ: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
622
+ } | {
623
+ readonly scale: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
624
+ } | {
625
+ readonly scaleX: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
626
+ } | {
627
+ readonly scaleY: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
628
+ } | {
629
+ readonly translateX: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
630
+ } | {
631
+ readonly translateY: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
632
+ } | {
633
+ readonly translate: [number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node, number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node] | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
634
+ } | {
635
+ readonly skewX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
636
+ } | {
637
+ readonly skewY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
638
+ } | {
639
+ readonly matrix: ReadonlyArray<number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node> | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
640
+ }>>>> | string;
641
+ transformOrigin?: [string | number, string | number, string | number] | string;
642
+ }>, "pointerEvents" | "filter" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
643
+ backfaceVisibility?: "visible" | "hidden";
644
+ backgroundColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
645
+ borderColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
646
+ borderCurve?: "circular" | "continuous";
647
+ borderBottomColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
648
+ borderEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
649
+ borderLeftColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
650
+ borderRightColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
651
+ borderStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
652
+ borderTopColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
653
+ borderBlockColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
654
+ borderBlockEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
655
+ borderBlockStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
656
+ borderRadius?: number | string;
657
+ borderBottomEndRadius?: number | string;
658
+ borderBottomLeftRadius?: number | string;
659
+ borderBottomRightRadius?: number | string;
660
+ borderBottomStartRadius?: number | string;
661
+ borderEndEndRadius?: number | string;
662
+ borderEndStartRadius?: number | string;
663
+ borderStartEndRadius?: number | string;
664
+ borderStartStartRadius?: number | string;
665
+ borderTopEndRadius?: number | string;
666
+ borderTopLeftRadius?: number | string;
667
+ borderTopRightRadius?: number | string;
668
+ borderTopStartRadius?: number | string;
669
+ borderStyle?: "solid" | "dotted" | "dashed";
670
+ borderWidth?: number;
671
+ borderBottomWidth?: number;
672
+ borderEndWidth?: number;
673
+ borderLeftWidth?: number;
674
+ borderRightWidth?: number;
675
+ borderStartWidth?: number;
676
+ borderTopWidth?: number;
677
+ opacity?: number;
678
+ outlineColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
679
+ outlineOffset?: number;
680
+ outlineStyle?: "solid" | "dotted" | "dashed";
681
+ outlineWidth?: number;
682
+ elevation?: number;
683
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only";
684
+ cursor?: import("react-native").CursorValue;
685
+ boxShadow?: ReadonlyArray<import("react-native").BoxShadowValue> | string;
686
+ filter?: ReadonlyArray<import("react-native").FilterFunction> | string;
687
+ mixBlendMode?: "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
688
+ experimental_backgroundImage?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundImageValue> | string;
689
+ experimental_backgroundSize?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundSizeValue> | string;
690
+ experimental_backgroundPosition?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundPositionValue> | string;
691
+ experimental_backgroundRepeat?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundRepeatValue> | string;
692
+ isolation?: "auto" | "isolate";
693
+ }>, never>>, never> & Omit<Readonly<{}>, never>> | readonly import("react-native").StyleProp<Readonly<Omit<Readonly<Omit<Readonly<{
694
+ display?: "none" | "flex" | "contents";
695
+ width?: import("react-native").DimensionValue;
696
+ height?: import("react-native").DimensionValue;
697
+ bottom?: import("react-native").DimensionValue;
698
+ end?: import("react-native").DimensionValue;
699
+ left?: import("react-native").DimensionValue;
700
+ right?: import("react-native").DimensionValue;
701
+ start?: import("react-native").DimensionValue;
702
+ top?: import("react-native").DimensionValue;
703
+ inset?: import("react-native").DimensionValue;
704
+ insetBlock?: import("react-native").DimensionValue;
705
+ insetBlockEnd?: import("react-native").DimensionValue;
706
+ insetBlockStart?: import("react-native").DimensionValue;
707
+ insetInline?: import("react-native").DimensionValue;
708
+ insetInlineEnd?: import("react-native").DimensionValue;
709
+ insetInlineStart?: import("react-native").DimensionValue;
710
+ minWidth?: import("react-native").DimensionValue;
711
+ maxWidth?: import("react-native").DimensionValue;
712
+ minHeight?: import("react-native").DimensionValue;
713
+ maxHeight?: import("react-native").DimensionValue;
714
+ margin?: import("react-native").DimensionValue;
715
+ marginBlock?: import("react-native").DimensionValue;
716
+ marginBlockEnd?: import("react-native").DimensionValue;
717
+ marginBlockStart?: import("react-native").DimensionValue;
718
+ marginBottom?: import("react-native").DimensionValue;
719
+ marginEnd?: import("react-native").DimensionValue;
720
+ marginHorizontal?: import("react-native").DimensionValue;
721
+ marginInline?: import("react-native").DimensionValue;
722
+ marginInlineEnd?: import("react-native").DimensionValue;
723
+ marginInlineStart?: import("react-native").DimensionValue;
724
+ marginLeft?: import("react-native").DimensionValue;
725
+ marginRight?: import("react-native").DimensionValue;
726
+ marginStart?: import("react-native").DimensionValue;
727
+ marginTop?: import("react-native").DimensionValue;
728
+ marginVertical?: import("react-native").DimensionValue;
729
+ padding?: import("react-native").DimensionValue;
730
+ paddingBlock?: import("react-native").DimensionValue;
731
+ paddingBlockEnd?: import("react-native").DimensionValue;
732
+ paddingBlockStart?: import("react-native").DimensionValue;
733
+ paddingBottom?: import("react-native").DimensionValue;
734
+ paddingEnd?: import("react-native").DimensionValue;
735
+ paddingHorizontal?: import("react-native").DimensionValue;
736
+ paddingInline?: import("react-native").DimensionValue;
737
+ paddingInlineEnd?: import("react-native").DimensionValue;
738
+ paddingInlineStart?: import("react-native").DimensionValue;
739
+ paddingLeft?: import("react-native").DimensionValue;
740
+ paddingRight?: import("react-native").DimensionValue;
741
+ paddingStart?: import("react-native").DimensionValue;
742
+ paddingTop?: import("react-native").DimensionValue;
743
+ paddingVertical?: import("react-native").DimensionValue;
744
+ borderWidth?: number;
745
+ borderBottomWidth?: number;
746
+ borderEndWidth?: number;
747
+ borderLeftWidth?: number;
748
+ borderRightWidth?: number;
749
+ borderStartWidth?: number;
750
+ borderTopWidth?: number;
751
+ position?: "absolute" | "relative" | "static";
752
+ flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
753
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse";
754
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
755
+ alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
756
+ alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
757
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
758
+ overflow?: "visible" | "hidden" | "scroll";
759
+ flex?: number;
760
+ flexGrow?: number;
761
+ flexShrink?: number;
762
+ flexBasis?: number | string;
763
+ aspectRatio?: number | string;
764
+ boxSizing?: "border-box" | "content-box";
765
+ zIndex?: number;
766
+ direction?: "inherit" | "ltr" | "rtl";
767
+ rowGap?: number | string;
768
+ columnGap?: number | string;
769
+ gap?: number | string;
770
+ }>, "pointerEvents" | "filter" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<Omit<Readonly<{
771
+ shadowColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
772
+ shadowOffset?: Readonly<{
773
+ width?: number;
774
+ height?: number;
775
+ }>;
776
+ shadowOpacity?: number;
777
+ shadowRadius?: number;
778
+ }>, never> & Omit<Readonly<{}>, never>>, "pointerEvents" | "filter" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
779
+ transform?: ReadonlyArray<Readonly<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MaximumOneOf<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MergeUnion<{
780
+ readonly perspective: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
781
+ } | {
782
+ readonly rotate: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
783
+ } | {
784
+ readonly rotateX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
785
+ } | {
786
+ readonly rotateY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
787
+ } | {
788
+ readonly rotateZ: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
789
+ } | {
790
+ readonly scale: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
791
+ } | {
792
+ readonly scaleX: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
793
+ } | {
794
+ readonly scaleY: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
795
+ } | {
796
+ readonly translateX: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
797
+ } | {
798
+ readonly translateY: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
799
+ } | {
800
+ readonly translate: [number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node, number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node] | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
801
+ } | {
802
+ readonly skewX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
803
+ } | {
804
+ readonly skewY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
805
+ } | {
806
+ readonly matrix: ReadonlyArray<number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node> | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
807
+ }>>>> | string;
808
+ transformOrigin?: [string | number, string | number, string | number] | string;
809
+ }>, "pointerEvents" | "filter" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
810
+ backfaceVisibility?: "visible" | "hidden";
811
+ backgroundColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
812
+ borderColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
813
+ borderCurve?: "circular" | "continuous";
814
+ borderBottomColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
815
+ borderEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
816
+ borderLeftColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
817
+ borderRightColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
818
+ borderStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
819
+ borderTopColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
820
+ borderBlockColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
821
+ borderBlockEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
822
+ borderBlockStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
823
+ borderRadius?: number | string;
824
+ borderBottomEndRadius?: number | string;
825
+ borderBottomLeftRadius?: number | string;
826
+ borderBottomRightRadius?: number | string;
827
+ borderBottomStartRadius?: number | string;
828
+ borderEndEndRadius?: number | string;
829
+ borderEndStartRadius?: number | string;
830
+ borderStartEndRadius?: number | string;
831
+ borderStartStartRadius?: number | string;
832
+ borderTopEndRadius?: number | string;
833
+ borderTopLeftRadius?: number | string;
834
+ borderTopRightRadius?: number | string;
835
+ borderTopStartRadius?: number | string;
836
+ borderStyle?: "solid" | "dotted" | "dashed";
837
+ borderWidth?: number;
838
+ borderBottomWidth?: number;
839
+ borderEndWidth?: number;
840
+ borderLeftWidth?: number;
841
+ borderRightWidth?: number;
842
+ borderStartWidth?: number;
843
+ borderTopWidth?: number;
844
+ opacity?: number;
845
+ outlineColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
846
+ outlineOffset?: number;
847
+ outlineStyle?: "solid" | "dotted" | "dashed";
848
+ outlineWidth?: number;
849
+ elevation?: number;
850
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only";
851
+ cursor?: import("react-native").CursorValue;
852
+ boxShadow?: ReadonlyArray<import("react-native").BoxShadowValue> | string;
853
+ filter?: ReadonlyArray<import("react-native").FilterFunction> | string;
854
+ mixBlendMode?: "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
855
+ experimental_backgroundImage?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundImageValue> | string;
856
+ experimental_backgroundSize?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundSizeValue> | string;
857
+ experimental_backgroundPosition?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundPositionValue> | string;
858
+ experimental_backgroundRepeat?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundRepeatValue> | string;
859
+ isolation?: "auto" | "isolate";
860
+ }>, never>>, never> & Omit<Readonly<{}>, never>>>[] | ((state: import("react-native").PressableStateCallbackType) => import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp) | null)[] | undefined;
26
861
  onFocusChangeHandler: (isFocused: boolean) => void;
27
- onKeyUpPressHandler: (e: import("..").OnKeyPress) => void;
862
+ onKeyUpPressHandler: (e: Readonly<{
863
+ bubbles: boolean | undefined;
864
+ cancelable: boolean | undefined;
865
+ currentTarget: number | import("react-native").HostInstance;
866
+ defaultPrevented: boolean | undefined;
867
+ dispatchConfig: Readonly<{
868
+ registrationName: string;
869
+ }>;
870
+ eventPhase: number | undefined;
871
+ preventDefault: () => void;
872
+ isDefaultPrevented: () => boolean;
873
+ stopPropagation: () => void;
874
+ isPropagationStopped: () => boolean;
875
+ isTrusted: boolean | undefined;
876
+ nativeEvent: Readonly<{
877
+ keyCode: import("react-native/Libraries/Types/CodegenTypes").Int32;
878
+ unicode: import("react-native/Libraries/Types/CodegenTypes").Int32;
879
+ unicodeChar: string;
880
+ isLongPress: boolean;
881
+ isAltPressed: boolean;
882
+ isShiftPressed: boolean;
883
+ isCtrlPressed: boolean;
884
+ isCapsLockOn: boolean;
885
+ hasNoModifiers: boolean;
886
+ }>;
887
+ persist: () => void;
888
+ target: (number | undefined) | import("react-native").HostInstance;
889
+ timeStamp: number;
890
+ type: string | undefined;
891
+ }>) => void;
28
892
  onKeyDownPressHandler: OnKeyPressFn | undefined;
29
893
  onPressHandler: TPress | undefined;
30
894
  onContextMenuHandler: () => void;