@ornikar/kitt-universal 16.1.4 → 16.3.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.
@@ -34,17 +34,1678 @@ export declare namespace Typography {
34
34
  var SetDefaultColor: import("react").Provider<ExtendedTypographyColor | undefined>;
35
35
  var Text: typeof TypographyText;
36
36
  var Paragraph: typeof TypographyParagraph;
37
- var Header1: FC<Except<TypographyProps, "accessibilityRole">>;
38
- var Header2: FC<Except<TypographyProps, "accessibilityRole">>;
39
- var Header3: FC<Except<TypographyProps, "accessibilityRole">>;
40
- var Header4: FC<Except<TypographyProps, "accessibilityRole">>;
41
- var Header5: FC<Except<TypographyProps, "accessibilityRole">>;
42
- var Header6: FC<Except<TypographyProps, "accessibilityRole">>;
43
- var h1: FC<Except<TypographyProps, "accessibilityRole">>;
44
- var h2: FC<Except<TypographyProps, "accessibilityRole">>;
45
- var h3: FC<Except<TypographyProps, "accessibilityRole">>;
46
- var h4: FC<Except<TypographyProps, "accessibilityRole">>;
47
- var h5: FC<Except<TypographyProps, "accessibilityRole">>;
37
+ var Header1: FC<{
38
+ type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
39
+ variant?: TypographyVariant | undefined;
40
+ color?: ExtendedTypographyColor | undefined;
41
+ children: ReactNode;
42
+ base?: TypographyType | undefined;
43
+ small?: TypographyType | undefined;
44
+ medium?: TypographyType | undefined;
45
+ large?: TypographyType | undefined;
46
+ wide?: TypographyType | undefined;
47
+ disabled?: boolean | undefined;
48
+ alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
49
+ alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
50
+ justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
51
+ justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
52
+ flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
53
+ flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
54
+ flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
55
+ flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
56
+ flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
57
+ flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
58
+ alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
59
+ hitSlop?: import("react-native").Insets | undefined;
60
+ id?: string | undefined;
61
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
62
+ pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
63
+ removeClippedSubviews?: boolean | undefined;
64
+ style?: import("react-native").StyleProp<TextStyle>;
65
+ testID?: string | undefined;
66
+ nativeID?: string | undefined;
67
+ href?: string | undefined;
68
+ hrefAttrs?: {
69
+ download?: boolean | undefined;
70
+ rel?: string | undefined;
71
+ target?: string | undefined;
72
+ } | undefined;
73
+ onMouseDown?: import("react").MouseEventHandler<any> | undefined;
74
+ onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
75
+ onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
76
+ onMouseMove?: import("react").MouseEventHandler<any> | undefined;
77
+ onMouseOver?: import("react").MouseEventHandler<any> | undefined;
78
+ onMouseOut?: import("react").MouseEventHandler<any> | undefined;
79
+ onMouseUp?: import("react").MouseEventHandler<any> | undefined;
80
+ collapsable?: boolean | undefined;
81
+ needsOffscreenAlphaCompositing?: boolean | undefined;
82
+ renderToHardwareTextureAndroid?: boolean | undefined;
83
+ focusable?: boolean | undefined;
84
+ shouldRasterizeIOS?: boolean | undefined;
85
+ isTVSelectable?: boolean | undefined;
86
+ hasTVPreferredFocus?: boolean | undefined;
87
+ tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
88
+ tvParallaxShiftDistanceX?: number | undefined;
89
+ tvParallaxShiftDistanceY?: number | undefined;
90
+ tvParallaxTiltAngle?: number | undefined;
91
+ tvParallaxMagnification?: number | undefined;
92
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
93
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
94
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
95
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
96
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
97
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
98
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
99
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
100
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
101
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
102
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
103
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
104
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
105
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
106
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
107
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
108
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
109
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
110
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
111
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
112
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
113
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
114
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
115
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
116
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
117
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
118
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
119
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
120
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
121
+ accessible?: boolean | undefined;
122
+ accessibilityActions?: readonly Readonly<{
123
+ name: string;
124
+ label?: string | undefined;
125
+ }>[] | undefined;
126
+ accessibilityLabel?: string | undefined;
127
+ 'aria-label'?: string | undefined;
128
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
129
+ 'aria-busy'?: boolean | undefined;
130
+ 'aria-checked'?: boolean | "mixed" | undefined;
131
+ 'aria-disabled'?: boolean | undefined;
132
+ 'aria-expanded'?: boolean | undefined;
133
+ 'aria-selected'?: boolean | undefined;
134
+ 'aria-labelledby'?: string | undefined;
135
+ accessibilityHint?: string | undefined;
136
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
137
+ 'aria-valuemax'?: number | undefined;
138
+ 'aria-valuemin'?: number | undefined;
139
+ 'aria-valuenow'?: number | undefined;
140
+ 'aria-valuetext'?: string | undefined;
141
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
142
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
143
+ 'aria-hidden'?: boolean | undefined;
144
+ 'aria-live'?: "polite" | "assertive" | "off" | undefined;
145
+ 'aria-modal'?: boolean | undefined;
146
+ role?: import("react-native").Role | undefined;
147
+ dataSet?: Record<string, string | number | boolean> | undefined;
148
+ accessibilityLabelledBy?: string | undefined;
149
+ accessibilityLevel?: number | undefined;
150
+ accessibilityHidden?: boolean | undefined;
151
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
152
+ accessibilityElementsHidden?: boolean | undefined;
153
+ accessibilityViewIsModal?: boolean | undefined;
154
+ onAccessibilityEscape?: (() => void) | undefined;
155
+ onAccessibilityTap?: (() => void) | undefined;
156
+ onMagicTap?: (() => void) | undefined;
157
+ accessibilityIgnoresInvertColors?: boolean | undefined;
158
+ accessibilityLanguage?: string | undefined;
159
+ textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
160
+ textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
161
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
162
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
163
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
164
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
165
+ allowFontScaling?: boolean | undefined;
166
+ ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
167
+ lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
168
+ numberOfLines?: number | undefined;
169
+ onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
170
+ maxFontSizeMultiplier?: number | null | undefined;
171
+ adjustsFontSizeToFit?: boolean | undefined;
172
+ dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
173
+ minimumFontScale?: number | undefined;
174
+ suppressHighlighting?: boolean | undefined;
175
+ selectable?: boolean | undefined;
176
+ selectionColor?: import("react-native").ColorValue | undefined;
177
+ textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
178
+ dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
179
+ android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
180
+ underline?: boolean | undefined;
181
+ cursor?: import("react-native").CursorValue | undefined;
182
+ transitionDuration?: string | string[] | undefined;
183
+ transitionProperty?: string | string[] | undefined;
184
+ transitionTimingFunction?: string | string[] | undefined;
185
+ _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
186
+ _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
187
+ _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
188
+ }>;
189
+ var Header2: FC<{
190
+ type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
191
+ variant?: TypographyVariant | undefined;
192
+ color?: ExtendedTypographyColor | undefined;
193
+ children: ReactNode;
194
+ base?: TypographyType | undefined;
195
+ small?: TypographyType | undefined;
196
+ medium?: TypographyType | undefined;
197
+ large?: TypographyType | undefined;
198
+ wide?: TypographyType | undefined;
199
+ disabled?: boolean | undefined;
200
+ alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
201
+ alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
202
+ justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
203
+ justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
204
+ flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
205
+ flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
206
+ flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
207
+ flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
208
+ flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
209
+ flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
210
+ alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
211
+ hitSlop?: import("react-native").Insets | undefined;
212
+ id?: string | undefined;
213
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
214
+ pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
215
+ removeClippedSubviews?: boolean | undefined;
216
+ style?: import("react-native").StyleProp<TextStyle>;
217
+ testID?: string | undefined;
218
+ nativeID?: string | undefined;
219
+ href?: string | undefined;
220
+ hrefAttrs?: {
221
+ download?: boolean | undefined;
222
+ rel?: string | undefined;
223
+ target?: string | undefined;
224
+ } | undefined;
225
+ onMouseDown?: import("react").MouseEventHandler<any> | undefined;
226
+ onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
227
+ onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
228
+ onMouseMove?: import("react").MouseEventHandler<any> | undefined;
229
+ onMouseOver?: import("react").MouseEventHandler<any> | undefined;
230
+ onMouseOut?: import("react").MouseEventHandler<any> | undefined;
231
+ onMouseUp?: import("react").MouseEventHandler<any> | undefined;
232
+ collapsable?: boolean | undefined;
233
+ needsOffscreenAlphaCompositing?: boolean | undefined;
234
+ renderToHardwareTextureAndroid?: boolean | undefined;
235
+ focusable?: boolean | undefined;
236
+ shouldRasterizeIOS?: boolean | undefined;
237
+ isTVSelectable?: boolean | undefined;
238
+ hasTVPreferredFocus?: boolean | undefined;
239
+ tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
240
+ tvParallaxShiftDistanceX?: number | undefined;
241
+ tvParallaxShiftDistanceY?: number | undefined;
242
+ tvParallaxTiltAngle?: number | undefined;
243
+ tvParallaxMagnification?: number | undefined;
244
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
245
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
246
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
247
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
248
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
249
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
250
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
251
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
252
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
253
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
254
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
255
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
256
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
257
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
258
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
259
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
260
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
261
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
262
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
263
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
264
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
265
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
266
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
267
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
268
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
269
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
270
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
271
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
272
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
273
+ accessible?: boolean | undefined;
274
+ accessibilityActions?: readonly Readonly<{
275
+ name: string;
276
+ label?: string | undefined;
277
+ }>[] | undefined;
278
+ accessibilityLabel?: string | undefined;
279
+ 'aria-label'?: string | undefined;
280
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
281
+ 'aria-busy'?: boolean | undefined;
282
+ 'aria-checked'?: boolean | "mixed" | undefined;
283
+ 'aria-disabled'?: boolean | undefined;
284
+ 'aria-expanded'?: boolean | undefined;
285
+ 'aria-selected'?: boolean | undefined;
286
+ 'aria-labelledby'?: string | undefined;
287
+ accessibilityHint?: string | undefined;
288
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
289
+ 'aria-valuemax'?: number | undefined;
290
+ 'aria-valuemin'?: number | undefined;
291
+ 'aria-valuenow'?: number | undefined;
292
+ 'aria-valuetext'?: string | undefined;
293
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
294
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
295
+ 'aria-hidden'?: boolean | undefined;
296
+ 'aria-live'?: "polite" | "assertive" | "off" | undefined;
297
+ 'aria-modal'?: boolean | undefined;
298
+ role?: import("react-native").Role | undefined;
299
+ dataSet?: Record<string, string | number | boolean> | undefined;
300
+ accessibilityLabelledBy?: string | undefined;
301
+ accessibilityLevel?: number | undefined;
302
+ accessibilityHidden?: boolean | undefined;
303
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
304
+ accessibilityElementsHidden?: boolean | undefined;
305
+ accessibilityViewIsModal?: boolean | undefined;
306
+ onAccessibilityEscape?: (() => void) | undefined;
307
+ onAccessibilityTap?: (() => void) | undefined;
308
+ onMagicTap?: (() => void) | undefined;
309
+ accessibilityIgnoresInvertColors?: boolean | undefined;
310
+ accessibilityLanguage?: string | undefined;
311
+ textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
312
+ textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
313
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
314
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
315
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
316
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
317
+ allowFontScaling?: boolean | undefined;
318
+ ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
319
+ lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
320
+ numberOfLines?: number | undefined;
321
+ onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
322
+ maxFontSizeMultiplier?: number | null | undefined;
323
+ adjustsFontSizeToFit?: boolean | undefined;
324
+ dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
325
+ minimumFontScale?: number | undefined;
326
+ suppressHighlighting?: boolean | undefined;
327
+ selectable?: boolean | undefined;
328
+ selectionColor?: import("react-native").ColorValue | undefined;
329
+ textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
330
+ dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
331
+ android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
332
+ underline?: boolean | undefined;
333
+ cursor?: import("react-native").CursorValue | undefined;
334
+ transitionDuration?: string | string[] | undefined;
335
+ transitionProperty?: string | string[] | undefined;
336
+ transitionTimingFunction?: string | string[] | undefined;
337
+ _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
338
+ _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
339
+ _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
340
+ }>;
341
+ var Header3: FC<{
342
+ type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
343
+ variant?: TypographyVariant | undefined;
344
+ color?: ExtendedTypographyColor | undefined;
345
+ children: ReactNode;
346
+ base?: TypographyType | undefined;
347
+ small?: TypographyType | undefined;
348
+ medium?: TypographyType | undefined;
349
+ large?: TypographyType | undefined;
350
+ wide?: TypographyType | undefined;
351
+ disabled?: boolean | undefined;
352
+ alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
353
+ alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
354
+ justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
355
+ justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
356
+ flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
357
+ flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
358
+ flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
359
+ flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
360
+ flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
361
+ flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
362
+ alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
363
+ hitSlop?: import("react-native").Insets | undefined;
364
+ id?: string | undefined;
365
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
366
+ pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
367
+ removeClippedSubviews?: boolean | undefined;
368
+ style?: import("react-native").StyleProp<TextStyle>;
369
+ testID?: string | undefined;
370
+ nativeID?: string | undefined;
371
+ href?: string | undefined;
372
+ hrefAttrs?: {
373
+ download?: boolean | undefined;
374
+ rel?: string | undefined;
375
+ target?: string | undefined;
376
+ } | undefined;
377
+ onMouseDown?: import("react").MouseEventHandler<any> | undefined;
378
+ onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
379
+ onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
380
+ onMouseMove?: import("react").MouseEventHandler<any> | undefined;
381
+ onMouseOver?: import("react").MouseEventHandler<any> | undefined;
382
+ onMouseOut?: import("react").MouseEventHandler<any> | undefined;
383
+ onMouseUp?: import("react").MouseEventHandler<any> | undefined;
384
+ collapsable?: boolean | undefined;
385
+ needsOffscreenAlphaCompositing?: boolean | undefined;
386
+ renderToHardwareTextureAndroid?: boolean | undefined;
387
+ focusable?: boolean | undefined;
388
+ shouldRasterizeIOS?: boolean | undefined;
389
+ isTVSelectable?: boolean | undefined;
390
+ hasTVPreferredFocus?: boolean | undefined;
391
+ tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
392
+ tvParallaxShiftDistanceX?: number | undefined;
393
+ tvParallaxShiftDistanceY?: number | undefined;
394
+ tvParallaxTiltAngle?: number | undefined;
395
+ tvParallaxMagnification?: number | undefined;
396
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
397
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
398
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
399
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
400
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
401
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
402
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
403
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
404
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
405
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
406
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
407
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
408
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
409
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
410
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
411
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
412
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
413
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
414
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
415
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
416
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
417
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
418
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
419
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
420
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
421
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
422
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
423
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
424
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
425
+ accessible?: boolean | undefined;
426
+ accessibilityActions?: readonly Readonly<{
427
+ name: string;
428
+ label?: string | undefined;
429
+ }>[] | undefined;
430
+ accessibilityLabel?: string | undefined;
431
+ 'aria-label'?: string | undefined;
432
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
433
+ 'aria-busy'?: boolean | undefined;
434
+ 'aria-checked'?: boolean | "mixed" | undefined;
435
+ 'aria-disabled'?: boolean | undefined;
436
+ 'aria-expanded'?: boolean | undefined;
437
+ 'aria-selected'?: boolean | undefined;
438
+ 'aria-labelledby'?: string | undefined;
439
+ accessibilityHint?: string | undefined;
440
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
441
+ 'aria-valuemax'?: number | undefined;
442
+ 'aria-valuemin'?: number | undefined;
443
+ 'aria-valuenow'?: number | undefined;
444
+ 'aria-valuetext'?: string | undefined;
445
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
446
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
447
+ 'aria-hidden'?: boolean | undefined;
448
+ 'aria-live'?: "polite" | "assertive" | "off" | undefined;
449
+ 'aria-modal'?: boolean | undefined;
450
+ role?: import("react-native").Role | undefined;
451
+ dataSet?: Record<string, string | number | boolean> | undefined;
452
+ accessibilityLabelledBy?: string | undefined;
453
+ accessibilityLevel?: number | undefined;
454
+ accessibilityHidden?: boolean | undefined;
455
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
456
+ accessibilityElementsHidden?: boolean | undefined;
457
+ accessibilityViewIsModal?: boolean | undefined;
458
+ onAccessibilityEscape?: (() => void) | undefined;
459
+ onAccessibilityTap?: (() => void) | undefined;
460
+ onMagicTap?: (() => void) | undefined;
461
+ accessibilityIgnoresInvertColors?: boolean | undefined;
462
+ accessibilityLanguage?: string | undefined;
463
+ textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
464
+ textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
465
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
466
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
467
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
468
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
469
+ allowFontScaling?: boolean | undefined;
470
+ ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
471
+ lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
472
+ numberOfLines?: number | undefined;
473
+ onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
474
+ maxFontSizeMultiplier?: number | null | undefined;
475
+ adjustsFontSizeToFit?: boolean | undefined;
476
+ dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
477
+ minimumFontScale?: number | undefined;
478
+ suppressHighlighting?: boolean | undefined;
479
+ selectable?: boolean | undefined;
480
+ selectionColor?: import("react-native").ColorValue | undefined;
481
+ textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
482
+ dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
483
+ android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
484
+ underline?: boolean | undefined;
485
+ cursor?: import("react-native").CursorValue | undefined;
486
+ transitionDuration?: string | string[] | undefined;
487
+ transitionProperty?: string | string[] | undefined;
488
+ transitionTimingFunction?: string | string[] | undefined;
489
+ _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
490
+ _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
491
+ _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
492
+ }>;
493
+ var Header4: FC<{
494
+ type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
495
+ variant?: TypographyVariant | undefined;
496
+ color?: ExtendedTypographyColor | undefined;
497
+ children: ReactNode;
498
+ base?: TypographyType | undefined;
499
+ small?: TypographyType | undefined;
500
+ medium?: TypographyType | undefined;
501
+ large?: TypographyType | undefined;
502
+ wide?: TypographyType | undefined;
503
+ disabled?: boolean | undefined;
504
+ alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
505
+ alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
506
+ justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
507
+ justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
508
+ flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
509
+ flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
510
+ flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
511
+ flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
512
+ flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
513
+ flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
514
+ alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
515
+ hitSlop?: import("react-native").Insets | undefined;
516
+ id?: string | undefined;
517
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
518
+ pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
519
+ removeClippedSubviews?: boolean | undefined;
520
+ style?: import("react-native").StyleProp<TextStyle>;
521
+ testID?: string | undefined;
522
+ nativeID?: string | undefined;
523
+ href?: string | undefined;
524
+ hrefAttrs?: {
525
+ download?: boolean | undefined;
526
+ rel?: string | undefined;
527
+ target?: string | undefined;
528
+ } | undefined;
529
+ onMouseDown?: import("react").MouseEventHandler<any> | undefined;
530
+ onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
531
+ onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
532
+ onMouseMove?: import("react").MouseEventHandler<any> | undefined;
533
+ onMouseOver?: import("react").MouseEventHandler<any> | undefined;
534
+ onMouseOut?: import("react").MouseEventHandler<any> | undefined;
535
+ onMouseUp?: import("react").MouseEventHandler<any> | undefined;
536
+ collapsable?: boolean | undefined;
537
+ needsOffscreenAlphaCompositing?: boolean | undefined;
538
+ renderToHardwareTextureAndroid?: boolean | undefined;
539
+ focusable?: boolean | undefined;
540
+ shouldRasterizeIOS?: boolean | undefined;
541
+ isTVSelectable?: boolean | undefined;
542
+ hasTVPreferredFocus?: boolean | undefined;
543
+ tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
544
+ tvParallaxShiftDistanceX?: number | undefined;
545
+ tvParallaxShiftDistanceY?: number | undefined;
546
+ tvParallaxTiltAngle?: number | undefined;
547
+ tvParallaxMagnification?: number | undefined;
548
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
549
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
550
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
551
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
552
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
553
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
554
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
555
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
556
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
557
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
558
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
559
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
560
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
561
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
562
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
563
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
564
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
565
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
566
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
567
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
568
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
569
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
570
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
571
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
572
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
573
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
574
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
575
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
576
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
577
+ accessible?: boolean | undefined;
578
+ accessibilityActions?: readonly Readonly<{
579
+ name: string;
580
+ label?: string | undefined;
581
+ }>[] | undefined;
582
+ accessibilityLabel?: string | undefined;
583
+ 'aria-label'?: string | undefined;
584
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
585
+ 'aria-busy'?: boolean | undefined;
586
+ 'aria-checked'?: boolean | "mixed" | undefined;
587
+ 'aria-disabled'?: boolean | undefined;
588
+ 'aria-expanded'?: boolean | undefined;
589
+ 'aria-selected'?: boolean | undefined;
590
+ 'aria-labelledby'?: string | undefined;
591
+ accessibilityHint?: string | undefined;
592
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
593
+ 'aria-valuemax'?: number | undefined;
594
+ 'aria-valuemin'?: number | undefined;
595
+ 'aria-valuenow'?: number | undefined;
596
+ 'aria-valuetext'?: string | undefined;
597
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
598
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
599
+ 'aria-hidden'?: boolean | undefined;
600
+ 'aria-live'?: "polite" | "assertive" | "off" | undefined;
601
+ 'aria-modal'?: boolean | undefined;
602
+ role?: import("react-native").Role | undefined;
603
+ dataSet?: Record<string, string | number | boolean> | undefined;
604
+ accessibilityLabelledBy?: string | undefined;
605
+ accessibilityLevel?: number | undefined;
606
+ accessibilityHidden?: boolean | undefined;
607
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
608
+ accessibilityElementsHidden?: boolean | undefined;
609
+ accessibilityViewIsModal?: boolean | undefined;
610
+ onAccessibilityEscape?: (() => void) | undefined;
611
+ onAccessibilityTap?: (() => void) | undefined;
612
+ onMagicTap?: (() => void) | undefined;
613
+ accessibilityIgnoresInvertColors?: boolean | undefined;
614
+ accessibilityLanguage?: string | undefined;
615
+ textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
616
+ textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
617
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
618
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
619
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
620
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
621
+ allowFontScaling?: boolean | undefined;
622
+ ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
623
+ lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
624
+ numberOfLines?: number | undefined;
625
+ onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
626
+ maxFontSizeMultiplier?: number | null | undefined;
627
+ adjustsFontSizeToFit?: boolean | undefined;
628
+ dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
629
+ minimumFontScale?: number | undefined;
630
+ suppressHighlighting?: boolean | undefined;
631
+ selectable?: boolean | undefined;
632
+ selectionColor?: import("react-native").ColorValue | undefined;
633
+ textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
634
+ dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
635
+ android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
636
+ underline?: boolean | undefined;
637
+ cursor?: import("react-native").CursorValue | undefined;
638
+ transitionDuration?: string | string[] | undefined;
639
+ transitionProperty?: string | string[] | undefined;
640
+ transitionTimingFunction?: string | string[] | undefined;
641
+ _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
642
+ _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
643
+ _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
644
+ }>;
645
+ var Header5: FC<{
646
+ type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
647
+ variant?: TypographyVariant | undefined;
648
+ color?: ExtendedTypographyColor | undefined;
649
+ children: ReactNode;
650
+ base?: TypographyType | undefined;
651
+ small?: TypographyType | undefined;
652
+ medium?: TypographyType | undefined;
653
+ large?: TypographyType | undefined;
654
+ wide?: TypographyType | undefined;
655
+ disabled?: boolean | undefined;
656
+ alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
657
+ alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
658
+ justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
659
+ justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
660
+ flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
661
+ flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
662
+ flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
663
+ flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
664
+ flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
665
+ flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
666
+ alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
667
+ hitSlop?: import("react-native").Insets | undefined;
668
+ id?: string | undefined;
669
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
670
+ pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
671
+ removeClippedSubviews?: boolean | undefined;
672
+ style?: import("react-native").StyleProp<TextStyle>;
673
+ testID?: string | undefined;
674
+ nativeID?: string | undefined;
675
+ href?: string | undefined;
676
+ hrefAttrs?: {
677
+ download?: boolean | undefined;
678
+ rel?: string | undefined;
679
+ target?: string | undefined;
680
+ } | undefined;
681
+ onMouseDown?: import("react").MouseEventHandler<any> | undefined;
682
+ onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
683
+ onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
684
+ onMouseMove?: import("react").MouseEventHandler<any> | undefined;
685
+ onMouseOver?: import("react").MouseEventHandler<any> | undefined;
686
+ onMouseOut?: import("react").MouseEventHandler<any> | undefined;
687
+ onMouseUp?: import("react").MouseEventHandler<any> | undefined;
688
+ collapsable?: boolean | undefined;
689
+ needsOffscreenAlphaCompositing?: boolean | undefined;
690
+ renderToHardwareTextureAndroid?: boolean | undefined;
691
+ focusable?: boolean | undefined;
692
+ shouldRasterizeIOS?: boolean | undefined;
693
+ isTVSelectable?: boolean | undefined;
694
+ hasTVPreferredFocus?: boolean | undefined;
695
+ tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
696
+ tvParallaxShiftDistanceX?: number | undefined;
697
+ tvParallaxShiftDistanceY?: number | undefined;
698
+ tvParallaxTiltAngle?: number | undefined;
699
+ tvParallaxMagnification?: number | undefined;
700
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
701
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
702
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
703
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
704
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
705
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
706
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
707
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
708
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
709
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
710
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
711
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
712
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
713
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
714
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
715
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
716
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
717
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
718
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
719
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
720
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
721
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
722
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
723
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
724
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
725
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
726
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
727
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
728
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
729
+ accessible?: boolean | undefined;
730
+ accessibilityActions?: readonly Readonly<{
731
+ name: string;
732
+ label?: string | undefined;
733
+ }>[] | undefined;
734
+ accessibilityLabel?: string | undefined;
735
+ 'aria-label'?: string | undefined;
736
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
737
+ 'aria-busy'?: boolean | undefined;
738
+ 'aria-checked'?: boolean | "mixed" | undefined;
739
+ 'aria-disabled'?: boolean | undefined;
740
+ 'aria-expanded'?: boolean | undefined;
741
+ 'aria-selected'?: boolean | undefined;
742
+ 'aria-labelledby'?: string | undefined;
743
+ accessibilityHint?: string | undefined;
744
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
745
+ 'aria-valuemax'?: number | undefined;
746
+ 'aria-valuemin'?: number | undefined;
747
+ 'aria-valuenow'?: number | undefined;
748
+ 'aria-valuetext'?: string | undefined;
749
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
750
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
751
+ 'aria-hidden'?: boolean | undefined;
752
+ 'aria-live'?: "polite" | "assertive" | "off" | undefined;
753
+ 'aria-modal'?: boolean | undefined;
754
+ role?: import("react-native").Role | undefined;
755
+ dataSet?: Record<string, string | number | boolean> | undefined;
756
+ accessibilityLabelledBy?: string | undefined;
757
+ accessibilityLevel?: number | undefined;
758
+ accessibilityHidden?: boolean | undefined;
759
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
760
+ accessibilityElementsHidden?: boolean | undefined;
761
+ accessibilityViewIsModal?: boolean | undefined;
762
+ onAccessibilityEscape?: (() => void) | undefined;
763
+ onAccessibilityTap?: (() => void) | undefined;
764
+ onMagicTap?: (() => void) | undefined;
765
+ accessibilityIgnoresInvertColors?: boolean | undefined;
766
+ accessibilityLanguage?: string | undefined;
767
+ textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
768
+ textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
769
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
770
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
771
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
772
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
773
+ allowFontScaling?: boolean | undefined;
774
+ ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
775
+ lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
776
+ numberOfLines?: number | undefined;
777
+ onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
778
+ maxFontSizeMultiplier?: number | null | undefined;
779
+ adjustsFontSizeToFit?: boolean | undefined;
780
+ dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
781
+ minimumFontScale?: number | undefined;
782
+ suppressHighlighting?: boolean | undefined;
783
+ selectable?: boolean | undefined;
784
+ selectionColor?: import("react-native").ColorValue | undefined;
785
+ textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
786
+ dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
787
+ android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
788
+ underline?: boolean | undefined;
789
+ cursor?: import("react-native").CursorValue | undefined;
790
+ transitionDuration?: string | string[] | undefined;
791
+ transitionProperty?: string | string[] | undefined;
792
+ transitionTimingFunction?: string | string[] | undefined;
793
+ _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
794
+ _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
795
+ _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
796
+ }>;
797
+ var Header6: FC<{
798
+ type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
799
+ variant?: TypographyVariant | undefined;
800
+ color?: ExtendedTypographyColor | undefined;
801
+ children: ReactNode;
802
+ base?: TypographyType | undefined;
803
+ small?: TypographyType | undefined;
804
+ medium?: TypographyType | undefined;
805
+ large?: TypographyType | undefined;
806
+ wide?: TypographyType | undefined;
807
+ disabled?: boolean | undefined;
808
+ alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
809
+ alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
810
+ justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
811
+ justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
812
+ flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
813
+ flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
814
+ flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
815
+ flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
816
+ flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
817
+ flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
818
+ alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
819
+ hitSlop?: import("react-native").Insets | undefined;
820
+ id?: string | undefined;
821
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
822
+ pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
823
+ removeClippedSubviews?: boolean | undefined;
824
+ style?: import("react-native").StyleProp<TextStyle>;
825
+ testID?: string | undefined;
826
+ nativeID?: string | undefined;
827
+ href?: string | undefined;
828
+ hrefAttrs?: {
829
+ download?: boolean | undefined;
830
+ rel?: string | undefined;
831
+ target?: string | undefined;
832
+ } | undefined;
833
+ onMouseDown?: import("react").MouseEventHandler<any> | undefined;
834
+ onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
835
+ onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
836
+ onMouseMove?: import("react").MouseEventHandler<any> | undefined;
837
+ onMouseOver?: import("react").MouseEventHandler<any> | undefined;
838
+ onMouseOut?: import("react").MouseEventHandler<any> | undefined;
839
+ onMouseUp?: import("react").MouseEventHandler<any> | undefined;
840
+ collapsable?: boolean | undefined;
841
+ needsOffscreenAlphaCompositing?: boolean | undefined;
842
+ renderToHardwareTextureAndroid?: boolean | undefined;
843
+ focusable?: boolean | undefined;
844
+ shouldRasterizeIOS?: boolean | undefined;
845
+ isTVSelectable?: boolean | undefined;
846
+ hasTVPreferredFocus?: boolean | undefined;
847
+ tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
848
+ tvParallaxShiftDistanceX?: number | undefined;
849
+ tvParallaxShiftDistanceY?: number | undefined;
850
+ tvParallaxTiltAngle?: number | undefined;
851
+ tvParallaxMagnification?: number | undefined;
852
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
853
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
854
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
855
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
856
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
857
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
858
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
859
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
860
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
861
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
862
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
863
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
864
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
865
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
866
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
867
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
868
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
869
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
870
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
871
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
872
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
873
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
874
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
875
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
876
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
877
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
878
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
879
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
880
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
881
+ accessible?: boolean | undefined;
882
+ accessibilityActions?: readonly Readonly<{
883
+ name: string;
884
+ label?: string | undefined;
885
+ }>[] | undefined;
886
+ accessibilityLabel?: string | undefined;
887
+ 'aria-label'?: string | undefined;
888
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
889
+ 'aria-busy'?: boolean | undefined;
890
+ 'aria-checked'?: boolean | "mixed" | undefined;
891
+ 'aria-disabled'?: boolean | undefined;
892
+ 'aria-expanded'?: boolean | undefined;
893
+ 'aria-selected'?: boolean | undefined;
894
+ 'aria-labelledby'?: string | undefined;
895
+ accessibilityHint?: string | undefined;
896
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
897
+ 'aria-valuemax'?: number | undefined;
898
+ 'aria-valuemin'?: number | undefined;
899
+ 'aria-valuenow'?: number | undefined;
900
+ 'aria-valuetext'?: string | undefined;
901
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
902
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
903
+ 'aria-hidden'?: boolean | undefined;
904
+ 'aria-live'?: "polite" | "assertive" | "off" | undefined;
905
+ 'aria-modal'?: boolean | undefined;
906
+ role?: import("react-native").Role | undefined;
907
+ dataSet?: Record<string, string | number | boolean> | undefined;
908
+ accessibilityLabelledBy?: string | undefined;
909
+ accessibilityLevel?: number | undefined;
910
+ accessibilityHidden?: boolean | undefined;
911
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
912
+ accessibilityElementsHidden?: boolean | undefined;
913
+ accessibilityViewIsModal?: boolean | undefined;
914
+ onAccessibilityEscape?: (() => void) | undefined;
915
+ onAccessibilityTap?: (() => void) | undefined;
916
+ onMagicTap?: (() => void) | undefined;
917
+ accessibilityIgnoresInvertColors?: boolean | undefined;
918
+ accessibilityLanguage?: string | undefined;
919
+ textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
920
+ textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
921
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
922
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
923
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
924
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
925
+ allowFontScaling?: boolean | undefined;
926
+ ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
927
+ lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
928
+ numberOfLines?: number | undefined;
929
+ onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
930
+ maxFontSizeMultiplier?: number | null | undefined;
931
+ adjustsFontSizeToFit?: boolean | undefined;
932
+ dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
933
+ minimumFontScale?: number | undefined;
934
+ suppressHighlighting?: boolean | undefined;
935
+ selectable?: boolean | undefined;
936
+ selectionColor?: import("react-native").ColorValue | undefined;
937
+ textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
938
+ dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
939
+ android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
940
+ underline?: boolean | undefined;
941
+ cursor?: import("react-native").CursorValue | undefined;
942
+ transitionDuration?: string | string[] | undefined;
943
+ transitionProperty?: string | string[] | undefined;
944
+ transitionTimingFunction?: string | string[] | undefined;
945
+ _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
946
+ _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
947
+ _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
948
+ }>;
949
+ var h1: FC<{
950
+ type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
951
+ variant?: TypographyVariant | undefined;
952
+ color?: ExtendedTypographyColor | undefined;
953
+ children: ReactNode;
954
+ base?: TypographyType | undefined;
955
+ small?: TypographyType | undefined;
956
+ medium?: TypographyType | undefined;
957
+ large?: TypographyType | undefined;
958
+ wide?: TypographyType | undefined;
959
+ disabled?: boolean | undefined;
960
+ alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
961
+ alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
962
+ justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
963
+ justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
964
+ flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
965
+ flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
966
+ flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
967
+ flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
968
+ flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
969
+ flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
970
+ alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
971
+ hitSlop?: import("react-native").Insets | undefined;
972
+ id?: string | undefined;
973
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
974
+ pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
975
+ removeClippedSubviews?: boolean | undefined;
976
+ style?: import("react-native").StyleProp<TextStyle>;
977
+ testID?: string | undefined;
978
+ nativeID?: string | undefined;
979
+ href?: string | undefined;
980
+ hrefAttrs?: {
981
+ download?: boolean | undefined;
982
+ rel?: string | undefined;
983
+ target?: string | undefined;
984
+ } | undefined;
985
+ onMouseDown?: import("react").MouseEventHandler<any> | undefined;
986
+ onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
987
+ onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
988
+ onMouseMove?: import("react").MouseEventHandler<any> | undefined;
989
+ onMouseOver?: import("react").MouseEventHandler<any> | undefined;
990
+ onMouseOut?: import("react").MouseEventHandler<any> | undefined;
991
+ onMouseUp?: import("react").MouseEventHandler<any> | undefined;
992
+ collapsable?: boolean | undefined;
993
+ needsOffscreenAlphaCompositing?: boolean | undefined;
994
+ renderToHardwareTextureAndroid?: boolean | undefined;
995
+ focusable?: boolean | undefined;
996
+ shouldRasterizeIOS?: boolean | undefined;
997
+ isTVSelectable?: boolean | undefined;
998
+ hasTVPreferredFocus?: boolean | undefined;
999
+ tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
1000
+ tvParallaxShiftDistanceX?: number | undefined;
1001
+ tvParallaxShiftDistanceY?: number | undefined;
1002
+ tvParallaxTiltAngle?: number | undefined;
1003
+ tvParallaxMagnification?: number | undefined;
1004
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1005
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1006
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1007
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1008
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1009
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1010
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1011
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1012
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1013
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1014
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1015
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1016
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1017
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1018
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1019
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1020
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1021
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
1022
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1023
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
1024
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1025
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
1026
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1027
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
1028
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1029
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
1030
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1031
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
1032
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1033
+ accessible?: boolean | undefined;
1034
+ accessibilityActions?: readonly Readonly<{
1035
+ name: string;
1036
+ label?: string | undefined;
1037
+ }>[] | undefined;
1038
+ accessibilityLabel?: string | undefined;
1039
+ 'aria-label'?: string | undefined;
1040
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
1041
+ 'aria-busy'?: boolean | undefined;
1042
+ 'aria-checked'?: boolean | "mixed" | undefined;
1043
+ 'aria-disabled'?: boolean | undefined;
1044
+ 'aria-expanded'?: boolean | undefined;
1045
+ 'aria-selected'?: boolean | undefined;
1046
+ 'aria-labelledby'?: string | undefined;
1047
+ accessibilityHint?: string | undefined;
1048
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1049
+ 'aria-valuemax'?: number | undefined;
1050
+ 'aria-valuemin'?: number | undefined;
1051
+ 'aria-valuenow'?: number | undefined;
1052
+ 'aria-valuetext'?: string | undefined;
1053
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
1054
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
1055
+ 'aria-hidden'?: boolean | undefined;
1056
+ 'aria-live'?: "polite" | "assertive" | "off" | undefined;
1057
+ 'aria-modal'?: boolean | undefined;
1058
+ role?: import("react-native").Role | undefined;
1059
+ dataSet?: Record<string, string | number | boolean> | undefined;
1060
+ accessibilityLabelledBy?: string | undefined;
1061
+ accessibilityLevel?: number | undefined;
1062
+ accessibilityHidden?: boolean | undefined;
1063
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
1064
+ accessibilityElementsHidden?: boolean | undefined;
1065
+ accessibilityViewIsModal?: boolean | undefined;
1066
+ onAccessibilityEscape?: (() => void) | undefined;
1067
+ onAccessibilityTap?: (() => void) | undefined;
1068
+ onMagicTap?: (() => void) | undefined;
1069
+ accessibilityIgnoresInvertColors?: boolean | undefined;
1070
+ accessibilityLanguage?: string | undefined;
1071
+ textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
1072
+ textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
1073
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1074
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1075
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1076
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1077
+ allowFontScaling?: boolean | undefined;
1078
+ ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
1079
+ lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
1080
+ numberOfLines?: number | undefined;
1081
+ onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
1082
+ maxFontSizeMultiplier?: number | null | undefined;
1083
+ adjustsFontSizeToFit?: boolean | undefined;
1084
+ dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
1085
+ minimumFontScale?: number | undefined;
1086
+ suppressHighlighting?: boolean | undefined;
1087
+ selectable?: boolean | undefined;
1088
+ selectionColor?: import("react-native").ColorValue | undefined;
1089
+ textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
1090
+ dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
1091
+ android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
1092
+ underline?: boolean | undefined;
1093
+ cursor?: import("react-native").CursorValue | undefined;
1094
+ transitionDuration?: string | string[] | undefined;
1095
+ transitionProperty?: string | string[] | undefined;
1096
+ transitionTimingFunction?: string | string[] | undefined;
1097
+ _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1098
+ _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1099
+ _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1100
+ }>;
1101
+ var h2: FC<{
1102
+ type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
1103
+ variant?: TypographyVariant | undefined;
1104
+ color?: ExtendedTypographyColor | undefined;
1105
+ children: ReactNode;
1106
+ base?: TypographyType | undefined;
1107
+ small?: TypographyType | undefined;
1108
+ medium?: TypographyType | undefined;
1109
+ large?: TypographyType | undefined;
1110
+ wide?: TypographyType | undefined;
1111
+ disabled?: boolean | undefined;
1112
+ alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
1113
+ alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
1114
+ justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
1115
+ justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
1116
+ flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
1117
+ flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
1118
+ flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
1119
+ flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
1120
+ flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
1121
+ flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
1122
+ alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
1123
+ hitSlop?: import("react-native").Insets | undefined;
1124
+ id?: string | undefined;
1125
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
1126
+ pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
1127
+ removeClippedSubviews?: boolean | undefined;
1128
+ style?: import("react-native").StyleProp<TextStyle>;
1129
+ testID?: string | undefined;
1130
+ nativeID?: string | undefined;
1131
+ href?: string | undefined;
1132
+ hrefAttrs?: {
1133
+ download?: boolean | undefined;
1134
+ rel?: string | undefined;
1135
+ target?: string | undefined;
1136
+ } | undefined;
1137
+ onMouseDown?: import("react").MouseEventHandler<any> | undefined;
1138
+ onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
1139
+ onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
1140
+ onMouseMove?: import("react").MouseEventHandler<any> | undefined;
1141
+ onMouseOver?: import("react").MouseEventHandler<any> | undefined;
1142
+ onMouseOut?: import("react").MouseEventHandler<any> | undefined;
1143
+ onMouseUp?: import("react").MouseEventHandler<any> | undefined;
1144
+ collapsable?: boolean | undefined;
1145
+ needsOffscreenAlphaCompositing?: boolean | undefined;
1146
+ renderToHardwareTextureAndroid?: boolean | undefined;
1147
+ focusable?: boolean | undefined;
1148
+ shouldRasterizeIOS?: boolean | undefined;
1149
+ isTVSelectable?: boolean | undefined;
1150
+ hasTVPreferredFocus?: boolean | undefined;
1151
+ tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
1152
+ tvParallaxShiftDistanceX?: number | undefined;
1153
+ tvParallaxShiftDistanceY?: number | undefined;
1154
+ tvParallaxTiltAngle?: number | undefined;
1155
+ tvParallaxMagnification?: number | undefined;
1156
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1157
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1158
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1159
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1160
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1161
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1162
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1163
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1164
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1165
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1166
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1167
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1168
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1169
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1170
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1171
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1172
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1173
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
1174
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1175
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
1176
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1177
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
1178
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1179
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
1180
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1181
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
1182
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1183
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
1184
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1185
+ accessible?: boolean | undefined;
1186
+ accessibilityActions?: readonly Readonly<{
1187
+ name: string;
1188
+ label?: string | undefined;
1189
+ }>[] | undefined;
1190
+ accessibilityLabel?: string | undefined;
1191
+ 'aria-label'?: string | undefined;
1192
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
1193
+ 'aria-busy'?: boolean | undefined;
1194
+ 'aria-checked'?: boolean | "mixed" | undefined;
1195
+ 'aria-disabled'?: boolean | undefined;
1196
+ 'aria-expanded'?: boolean | undefined;
1197
+ 'aria-selected'?: boolean | undefined;
1198
+ 'aria-labelledby'?: string | undefined;
1199
+ accessibilityHint?: string | undefined;
1200
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1201
+ 'aria-valuemax'?: number | undefined;
1202
+ 'aria-valuemin'?: number | undefined;
1203
+ 'aria-valuenow'?: number | undefined;
1204
+ 'aria-valuetext'?: string | undefined;
1205
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
1206
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
1207
+ 'aria-hidden'?: boolean | undefined;
1208
+ 'aria-live'?: "polite" | "assertive" | "off" | undefined;
1209
+ 'aria-modal'?: boolean | undefined;
1210
+ role?: import("react-native").Role | undefined;
1211
+ dataSet?: Record<string, string | number | boolean> | undefined;
1212
+ accessibilityLabelledBy?: string | undefined;
1213
+ accessibilityLevel?: number | undefined;
1214
+ accessibilityHidden?: boolean | undefined;
1215
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
1216
+ accessibilityElementsHidden?: boolean | undefined;
1217
+ accessibilityViewIsModal?: boolean | undefined;
1218
+ onAccessibilityEscape?: (() => void) | undefined;
1219
+ onAccessibilityTap?: (() => void) | undefined;
1220
+ onMagicTap?: (() => void) | undefined;
1221
+ accessibilityIgnoresInvertColors?: boolean | undefined;
1222
+ accessibilityLanguage?: string | undefined;
1223
+ textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
1224
+ textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
1225
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1226
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1227
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1228
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1229
+ allowFontScaling?: boolean | undefined;
1230
+ ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
1231
+ lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
1232
+ numberOfLines?: number | undefined;
1233
+ onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
1234
+ maxFontSizeMultiplier?: number | null | undefined;
1235
+ adjustsFontSizeToFit?: boolean | undefined;
1236
+ dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
1237
+ minimumFontScale?: number | undefined;
1238
+ suppressHighlighting?: boolean | undefined;
1239
+ selectable?: boolean | undefined;
1240
+ selectionColor?: import("react-native").ColorValue | undefined;
1241
+ textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
1242
+ dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
1243
+ android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
1244
+ underline?: boolean | undefined;
1245
+ cursor?: import("react-native").CursorValue | undefined;
1246
+ transitionDuration?: string | string[] | undefined;
1247
+ transitionProperty?: string | string[] | undefined;
1248
+ transitionTimingFunction?: string | string[] | undefined;
1249
+ _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1250
+ _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1251
+ _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1252
+ }>;
1253
+ var h3: FC<{
1254
+ type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
1255
+ variant?: TypographyVariant | undefined;
1256
+ color?: ExtendedTypographyColor | undefined;
1257
+ children: ReactNode;
1258
+ base?: TypographyType | undefined;
1259
+ small?: TypographyType | undefined;
1260
+ medium?: TypographyType | undefined;
1261
+ large?: TypographyType | undefined;
1262
+ wide?: TypographyType | undefined;
1263
+ disabled?: boolean | undefined;
1264
+ alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
1265
+ alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
1266
+ justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
1267
+ justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
1268
+ flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
1269
+ flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
1270
+ flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
1271
+ flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
1272
+ flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
1273
+ flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
1274
+ alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
1275
+ hitSlop?: import("react-native").Insets | undefined;
1276
+ id?: string | undefined;
1277
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
1278
+ pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
1279
+ removeClippedSubviews?: boolean | undefined;
1280
+ style?: import("react-native").StyleProp<TextStyle>;
1281
+ testID?: string | undefined;
1282
+ nativeID?: string | undefined;
1283
+ href?: string | undefined;
1284
+ hrefAttrs?: {
1285
+ download?: boolean | undefined;
1286
+ rel?: string | undefined;
1287
+ target?: string | undefined;
1288
+ } | undefined;
1289
+ onMouseDown?: import("react").MouseEventHandler<any> | undefined;
1290
+ onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
1291
+ onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
1292
+ onMouseMove?: import("react").MouseEventHandler<any> | undefined;
1293
+ onMouseOver?: import("react").MouseEventHandler<any> | undefined;
1294
+ onMouseOut?: import("react").MouseEventHandler<any> | undefined;
1295
+ onMouseUp?: import("react").MouseEventHandler<any> | undefined;
1296
+ collapsable?: boolean | undefined;
1297
+ needsOffscreenAlphaCompositing?: boolean | undefined;
1298
+ renderToHardwareTextureAndroid?: boolean | undefined;
1299
+ focusable?: boolean | undefined;
1300
+ shouldRasterizeIOS?: boolean | undefined;
1301
+ isTVSelectable?: boolean | undefined;
1302
+ hasTVPreferredFocus?: boolean | undefined;
1303
+ tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
1304
+ tvParallaxShiftDistanceX?: number | undefined;
1305
+ tvParallaxShiftDistanceY?: number | undefined;
1306
+ tvParallaxTiltAngle?: number | undefined;
1307
+ tvParallaxMagnification?: number | undefined;
1308
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1309
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1310
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1311
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1312
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1313
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1314
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1315
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1316
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1317
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1318
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1319
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1320
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1321
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1322
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1323
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1324
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1325
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
1326
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1327
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
1328
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1329
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
1330
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1331
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
1332
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1333
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
1334
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1335
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
1336
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1337
+ accessible?: boolean | undefined;
1338
+ accessibilityActions?: readonly Readonly<{
1339
+ name: string;
1340
+ label?: string | undefined;
1341
+ }>[] | undefined;
1342
+ accessibilityLabel?: string | undefined;
1343
+ 'aria-label'?: string | undefined;
1344
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
1345
+ 'aria-busy'?: boolean | undefined;
1346
+ 'aria-checked'?: boolean | "mixed" | undefined;
1347
+ 'aria-disabled'?: boolean | undefined;
1348
+ 'aria-expanded'?: boolean | undefined;
1349
+ 'aria-selected'?: boolean | undefined;
1350
+ 'aria-labelledby'?: string | undefined;
1351
+ accessibilityHint?: string | undefined;
1352
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1353
+ 'aria-valuemax'?: number | undefined;
1354
+ 'aria-valuemin'?: number | undefined;
1355
+ 'aria-valuenow'?: number | undefined;
1356
+ 'aria-valuetext'?: string | undefined;
1357
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
1358
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
1359
+ 'aria-hidden'?: boolean | undefined;
1360
+ 'aria-live'?: "polite" | "assertive" | "off" | undefined;
1361
+ 'aria-modal'?: boolean | undefined;
1362
+ role?: import("react-native").Role | undefined;
1363
+ dataSet?: Record<string, string | number | boolean> | undefined;
1364
+ accessibilityLabelledBy?: string | undefined;
1365
+ accessibilityLevel?: number | undefined;
1366
+ accessibilityHidden?: boolean | undefined;
1367
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
1368
+ accessibilityElementsHidden?: boolean | undefined;
1369
+ accessibilityViewIsModal?: boolean | undefined;
1370
+ onAccessibilityEscape?: (() => void) | undefined;
1371
+ onAccessibilityTap?: (() => void) | undefined;
1372
+ onMagicTap?: (() => void) | undefined;
1373
+ accessibilityIgnoresInvertColors?: boolean | undefined;
1374
+ accessibilityLanguage?: string | undefined;
1375
+ textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
1376
+ textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
1377
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1378
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1379
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1380
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1381
+ allowFontScaling?: boolean | undefined;
1382
+ ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
1383
+ lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
1384
+ numberOfLines?: number | undefined;
1385
+ onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
1386
+ maxFontSizeMultiplier?: number | null | undefined;
1387
+ adjustsFontSizeToFit?: boolean | undefined;
1388
+ dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
1389
+ minimumFontScale?: number | undefined;
1390
+ suppressHighlighting?: boolean | undefined;
1391
+ selectable?: boolean | undefined;
1392
+ selectionColor?: import("react-native").ColorValue | undefined;
1393
+ textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
1394
+ dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
1395
+ android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
1396
+ underline?: boolean | undefined;
1397
+ cursor?: import("react-native").CursorValue | undefined;
1398
+ transitionDuration?: string | string[] | undefined;
1399
+ transitionProperty?: string | string[] | undefined;
1400
+ transitionTimingFunction?: string | string[] | undefined;
1401
+ _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1402
+ _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1403
+ _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1404
+ }>;
1405
+ var h4: FC<{
1406
+ type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
1407
+ variant?: TypographyVariant | undefined;
1408
+ color?: ExtendedTypographyColor | undefined;
1409
+ children: ReactNode;
1410
+ base?: TypographyType | undefined;
1411
+ small?: TypographyType | undefined;
1412
+ medium?: TypographyType | undefined;
1413
+ large?: TypographyType | undefined;
1414
+ wide?: TypographyType | undefined;
1415
+ disabled?: boolean | undefined;
1416
+ alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
1417
+ alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
1418
+ justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
1419
+ justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
1420
+ flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
1421
+ flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
1422
+ flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
1423
+ flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
1424
+ flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
1425
+ flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
1426
+ alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
1427
+ hitSlop?: import("react-native").Insets | undefined;
1428
+ id?: string | undefined;
1429
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
1430
+ pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
1431
+ removeClippedSubviews?: boolean | undefined;
1432
+ style?: import("react-native").StyleProp<TextStyle>;
1433
+ testID?: string | undefined;
1434
+ nativeID?: string | undefined;
1435
+ href?: string | undefined;
1436
+ hrefAttrs?: {
1437
+ download?: boolean | undefined;
1438
+ rel?: string | undefined;
1439
+ target?: string | undefined;
1440
+ } | undefined;
1441
+ onMouseDown?: import("react").MouseEventHandler<any> | undefined;
1442
+ onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
1443
+ onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
1444
+ onMouseMove?: import("react").MouseEventHandler<any> | undefined;
1445
+ onMouseOver?: import("react").MouseEventHandler<any> | undefined;
1446
+ onMouseOut?: import("react").MouseEventHandler<any> | undefined;
1447
+ onMouseUp?: import("react").MouseEventHandler<any> | undefined;
1448
+ collapsable?: boolean | undefined;
1449
+ needsOffscreenAlphaCompositing?: boolean | undefined;
1450
+ renderToHardwareTextureAndroid?: boolean | undefined;
1451
+ focusable?: boolean | undefined;
1452
+ shouldRasterizeIOS?: boolean | undefined;
1453
+ isTVSelectable?: boolean | undefined;
1454
+ hasTVPreferredFocus?: boolean | undefined;
1455
+ tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
1456
+ tvParallaxShiftDistanceX?: number | undefined;
1457
+ tvParallaxShiftDistanceY?: number | undefined;
1458
+ tvParallaxTiltAngle?: number | undefined;
1459
+ tvParallaxMagnification?: number | undefined;
1460
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1461
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1462
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1463
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1464
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1465
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1466
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1467
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1468
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1469
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1470
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1471
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1472
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1473
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1474
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1475
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1476
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1477
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
1478
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1479
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
1480
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1481
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
1482
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1483
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
1484
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1485
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
1486
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1487
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
1488
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1489
+ accessible?: boolean | undefined;
1490
+ accessibilityActions?: readonly Readonly<{
1491
+ name: string;
1492
+ label?: string | undefined;
1493
+ }>[] | undefined;
1494
+ accessibilityLabel?: string | undefined;
1495
+ 'aria-label'?: string | undefined;
1496
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
1497
+ 'aria-busy'?: boolean | undefined;
1498
+ 'aria-checked'?: boolean | "mixed" | undefined;
1499
+ 'aria-disabled'?: boolean | undefined;
1500
+ 'aria-expanded'?: boolean | undefined;
1501
+ 'aria-selected'?: boolean | undefined;
1502
+ 'aria-labelledby'?: string | undefined;
1503
+ accessibilityHint?: string | undefined;
1504
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1505
+ 'aria-valuemax'?: number | undefined;
1506
+ 'aria-valuemin'?: number | undefined;
1507
+ 'aria-valuenow'?: number | undefined;
1508
+ 'aria-valuetext'?: string | undefined;
1509
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
1510
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
1511
+ 'aria-hidden'?: boolean | undefined;
1512
+ 'aria-live'?: "polite" | "assertive" | "off" | undefined;
1513
+ 'aria-modal'?: boolean | undefined;
1514
+ role?: import("react-native").Role | undefined;
1515
+ dataSet?: Record<string, string | number | boolean> | undefined;
1516
+ accessibilityLabelledBy?: string | undefined;
1517
+ accessibilityLevel?: number | undefined;
1518
+ accessibilityHidden?: boolean | undefined;
1519
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
1520
+ accessibilityElementsHidden?: boolean | undefined;
1521
+ accessibilityViewIsModal?: boolean | undefined;
1522
+ onAccessibilityEscape?: (() => void) | undefined;
1523
+ onAccessibilityTap?: (() => void) | undefined;
1524
+ onMagicTap?: (() => void) | undefined;
1525
+ accessibilityIgnoresInvertColors?: boolean | undefined;
1526
+ accessibilityLanguage?: string | undefined;
1527
+ textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
1528
+ textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
1529
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1530
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1531
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1532
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1533
+ allowFontScaling?: boolean | undefined;
1534
+ ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
1535
+ lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
1536
+ numberOfLines?: number | undefined;
1537
+ onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
1538
+ maxFontSizeMultiplier?: number | null | undefined;
1539
+ adjustsFontSizeToFit?: boolean | undefined;
1540
+ dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
1541
+ minimumFontScale?: number | undefined;
1542
+ suppressHighlighting?: boolean | undefined;
1543
+ selectable?: boolean | undefined;
1544
+ selectionColor?: import("react-native").ColorValue | undefined;
1545
+ textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
1546
+ dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
1547
+ android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
1548
+ underline?: boolean | undefined;
1549
+ cursor?: import("react-native").CursorValue | undefined;
1550
+ transitionDuration?: string | string[] | undefined;
1551
+ transitionProperty?: string | string[] | undefined;
1552
+ transitionTimingFunction?: string | string[] | undefined;
1553
+ _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1554
+ _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1555
+ _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1556
+ }>;
1557
+ var h5: FC<{
1558
+ type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
1559
+ variant?: TypographyVariant | undefined;
1560
+ color?: ExtendedTypographyColor | undefined;
1561
+ children: ReactNode;
1562
+ base?: TypographyType | undefined;
1563
+ small?: TypographyType | undefined;
1564
+ medium?: TypographyType | undefined;
1565
+ large?: TypographyType | undefined;
1566
+ wide?: TypographyType | undefined;
1567
+ disabled?: boolean | undefined;
1568
+ alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
1569
+ alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
1570
+ justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
1571
+ justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
1572
+ flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
1573
+ flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
1574
+ flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
1575
+ flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
1576
+ flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
1577
+ flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
1578
+ alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
1579
+ hitSlop?: import("react-native").Insets | undefined;
1580
+ id?: string | undefined;
1581
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
1582
+ pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
1583
+ removeClippedSubviews?: boolean | undefined;
1584
+ style?: import("react-native").StyleProp<TextStyle>;
1585
+ testID?: string | undefined;
1586
+ nativeID?: string | undefined;
1587
+ href?: string | undefined;
1588
+ hrefAttrs?: {
1589
+ download?: boolean | undefined;
1590
+ rel?: string | undefined;
1591
+ target?: string | undefined;
1592
+ } | undefined;
1593
+ onMouseDown?: import("react").MouseEventHandler<any> | undefined;
1594
+ onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
1595
+ onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
1596
+ onMouseMove?: import("react").MouseEventHandler<any> | undefined;
1597
+ onMouseOver?: import("react").MouseEventHandler<any> | undefined;
1598
+ onMouseOut?: import("react").MouseEventHandler<any> | undefined;
1599
+ onMouseUp?: import("react").MouseEventHandler<any> | undefined;
1600
+ collapsable?: boolean | undefined;
1601
+ needsOffscreenAlphaCompositing?: boolean | undefined;
1602
+ renderToHardwareTextureAndroid?: boolean | undefined;
1603
+ focusable?: boolean | undefined;
1604
+ shouldRasterizeIOS?: boolean | undefined;
1605
+ isTVSelectable?: boolean | undefined;
1606
+ hasTVPreferredFocus?: boolean | undefined;
1607
+ tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
1608
+ tvParallaxShiftDistanceX?: number | undefined;
1609
+ tvParallaxShiftDistanceY?: number | undefined;
1610
+ tvParallaxTiltAngle?: number | undefined;
1611
+ tvParallaxMagnification?: number | undefined;
1612
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1613
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1614
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1615
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1616
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1617
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1618
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1619
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1620
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1621
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1622
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1623
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1624
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1625
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1626
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1627
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1628
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1629
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
1630
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1631
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
1632
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1633
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
1634
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1635
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
1636
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1637
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
1638
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1639
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
1640
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1641
+ accessible?: boolean | undefined;
1642
+ accessibilityActions?: readonly Readonly<{
1643
+ name: string;
1644
+ label?: string | undefined;
1645
+ }>[] | undefined;
1646
+ accessibilityLabel?: string | undefined;
1647
+ 'aria-label'?: string | undefined;
1648
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
1649
+ 'aria-busy'?: boolean | undefined;
1650
+ 'aria-checked'?: boolean | "mixed" | undefined;
1651
+ 'aria-disabled'?: boolean | undefined;
1652
+ 'aria-expanded'?: boolean | undefined;
1653
+ 'aria-selected'?: boolean | undefined;
1654
+ 'aria-labelledby'?: string | undefined;
1655
+ accessibilityHint?: string | undefined;
1656
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1657
+ 'aria-valuemax'?: number | undefined;
1658
+ 'aria-valuemin'?: number | undefined;
1659
+ 'aria-valuenow'?: number | undefined;
1660
+ 'aria-valuetext'?: string | undefined;
1661
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
1662
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
1663
+ 'aria-hidden'?: boolean | undefined;
1664
+ 'aria-live'?: "polite" | "assertive" | "off" | undefined;
1665
+ 'aria-modal'?: boolean | undefined;
1666
+ role?: import("react-native").Role | undefined;
1667
+ dataSet?: Record<string, string | number | boolean> | undefined;
1668
+ accessibilityLabelledBy?: string | undefined;
1669
+ accessibilityLevel?: number | undefined;
1670
+ accessibilityHidden?: boolean | undefined;
1671
+ accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
1672
+ accessibilityElementsHidden?: boolean | undefined;
1673
+ accessibilityViewIsModal?: boolean | undefined;
1674
+ onAccessibilityEscape?: (() => void) | undefined;
1675
+ onAccessibilityTap?: (() => void) | undefined;
1676
+ onMagicTap?: (() => void) | undefined;
1677
+ accessibilityIgnoresInvertColors?: boolean | undefined;
1678
+ accessibilityLanguage?: string | undefined;
1679
+ textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
1680
+ textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
1681
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1682
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1683
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1684
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1685
+ allowFontScaling?: boolean | undefined;
1686
+ ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
1687
+ lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
1688
+ numberOfLines?: number | undefined;
1689
+ onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
1690
+ maxFontSizeMultiplier?: number | null | undefined;
1691
+ adjustsFontSizeToFit?: boolean | undefined;
1692
+ dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
1693
+ minimumFontScale?: number | undefined;
1694
+ suppressHighlighting?: boolean | undefined;
1695
+ selectable?: boolean | undefined;
1696
+ selectionColor?: import("react-native").ColorValue | undefined;
1697
+ textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
1698
+ dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
1699
+ android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
1700
+ underline?: boolean | undefined;
1701
+ cursor?: import("react-native").CursorValue | undefined;
1702
+ transitionDuration?: string | string[] | undefined;
1703
+ transitionProperty?: string | string[] | undefined;
1704
+ transitionTimingFunction?: string | string[] | undefined;
1705
+ _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1706
+ _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1707
+ _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1708
+ }>;
48
1709
  }
49
1710
  export type TypographyTextProps = SetOptional<TypographyProps, 'accessibilityRole'>;
50
1711
  declare function TypographyText(props: TypographyTextProps): ReactElement;