react-native-external-keyboard 0.11.0 → 1.0.0

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