@ornikar/kitt-universal 28.0.1 → 28.1.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.
@@ -1,6 +1,8 @@
1
1
  import type { ITextProps } from 'native-base';
2
+ import { Text as NBText } from 'native-base';
2
3
  import type { PlatformProps } from 'native-base/lib/typescript/components/types';
3
- import type { FC, ReactNode } from 'react';
4
+ import type { ElementRef, FC, ReactNode } from 'react';
5
+ import type React from 'react';
4
6
  import type { TextProps, TextStyle } from 'react-native';
5
7
  import type { Except, SetOptional } from 'type-fest';
6
8
  import type { KittResponsiveProp } from '../KittBreakpoints';
@@ -16,6 +18,7 @@ export type TypographyType = TypographyHeadingType | TypographyBodyType | Typogr
16
18
  type TypographyVariant = 'regular' | 'semibold' | 'bold';
17
19
  export declare function useTypographyColor(): ExtendedTypographyColor;
18
20
  export declare function useTypographyAncestorType(): TypographyBreakpointType | null;
21
+ declare const TypographyDefaultColorContext: React.Context<ExtendedTypographyColor | undefined>;
19
22
  export type TypographyBreakpointType = Partial<KittResponsiveProp<TypographyType>>;
20
23
  type NativeBaseTextPropsAcceptedProps = Pick<ITextProps, keyof Except<TextProps, 'accessibilityRole'> | 'textAlign' | 'textTransform' | 'underline' | 'strikeThrough' | NativeBaseAcceptedFlexboxProps> & Pick<TextStyle, 'cursor' | 'transitionProperty' | 'transitionDuration' | 'transitionTimingFunction'>;
21
24
  export interface TypographyProps extends TypographyBreakpointType, NativeBaseTextPropsAcceptedProps, Pick<PlatformProps<NativeBaseTextPropsAcceptedProps>, '_android' | '_ios' | '_web'> {
@@ -29,1119 +32,390 @@ export interface TypographyProps extends TypographyBreakpointType, NativeBaseTex
29
32
  }
30
33
  export type TypographyPropsWithoutAccessibilityRole = Except<TypographyProps, 'accessibilityRole'>;
31
34
  export declare function createNativeBaseFontSize(type: TypographyBreakpointType): ITextProps['fontSize'];
32
- export declare function Typography({ accessibilityRole, base: legacyBase, small: legacySmall, medium: legacyMedium, large: legacyLarge, wide: legacyWide, type, variant, color, ...otherProps }: TypographyProps): ReactNode;
33
- export declare namespace Typography {
34
- var SetDefaultColor: import("react").Provider<ExtendedTypographyColor | undefined>;
35
- var Text: typeof TypographyText;
36
- var Paragraph: typeof TypographyParagraph;
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?: number | import("react-native").Insets | null | undefined;
60
- id?: string | undefined;
61
- needsOffscreenAlphaCompositing?: boolean | undefined;
62
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
63
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | undefined;
64
- removeClippedSubviews?: boolean | undefined;
65
- style?: import("react-native").StyleProp<TextStyle>;
66
- testID?: string | undefined;
67
- nativeID?: string | undefined;
68
- href?: string | undefined;
69
- hrefAttrs?: {
70
- download?: boolean | undefined;
71
- rel?: string | undefined;
72
- target?: string | undefined;
73
- } | undefined;
74
- onMouseDown?: import("react").MouseEventHandler<any> | undefined;
75
- onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
76
- onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
77
- onMouseMove?: import("react").MouseEventHandler<any> | undefined;
78
- onMouseOver?: import("react").MouseEventHandler<any> | undefined;
79
- onMouseOut?: import("react").MouseEventHandler<any> | undefined;
80
- onMouseUp?: import("react").MouseEventHandler<any> | undefined;
81
- collapsable?: boolean | undefined;
82
- renderToHardwareTextureAndroid?: boolean | undefined;
83
- focusable?: boolean | undefined;
84
- tabIndex?: 0 | -1 | undefined;
85
- shouldRasterizeIOS?: boolean | undefined;
86
- isTVSelectable?: boolean | undefined;
87
- hasTVPreferredFocus?: boolean | undefined;
88
- tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
89
- tvParallaxShiftDistanceX?: number | undefined;
90
- tvParallaxShiftDistanceY?: number | undefined;
91
- tvParallaxTiltAngle?: number | undefined;
92
- tvParallaxMagnification?: number | undefined;
93
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
94
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
95
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
96
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
97
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
98
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
99
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
100
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
101
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
102
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
103
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
104
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
105
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
106
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
107
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
108
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
109
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
110
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
111
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
112
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
113
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
114
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
115
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
116
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
117
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
118
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
119
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
120
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
121
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
122
- accessible?: boolean | undefined;
123
- accessibilityActions?: readonly Readonly<{
124
- name: string;
125
- label?: string | undefined;
126
- }>[] | undefined;
127
- accessibilityLabel?: string | undefined;
128
- 'aria-label'?: string | undefined;
129
- accessibilityState?: import("react-native").AccessibilityState | undefined;
130
- 'aria-busy'?: boolean | undefined;
131
- 'aria-checked'?: boolean | "mixed" | undefined;
132
- 'aria-disabled'?: boolean | undefined;
133
- 'aria-expanded'?: boolean | undefined;
134
- 'aria-selected'?: boolean | 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-modal'?: boolean | undefined;
145
- role?: import("react-native").Role | undefined;
146
- dataSet?: Record<string, string | number | boolean> | undefined;
147
- 'aria-activedescendant'?: string | undefined;
148
- 'aria-atomic'?: boolean | undefined;
149
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
150
- 'aria-colcount'?: number | undefined;
151
- 'aria-colindex'?: number | undefined;
152
- 'aria-colspan'?: number | undefined;
153
- 'aria-controls'?: string | undefined;
154
- 'aria-current'?: boolean | "page" | "step" | "location" | "date" | "time" | undefined;
155
- 'aria-describedby'?: string | undefined;
156
- 'aria-details'?: string | undefined;
157
- 'aria-errormessage'?: string | undefined;
158
- 'aria-flowto'?: string | undefined;
159
- 'aria-haspopup'?: false | "menu" | "dialog" | "grid" | "tree" | "listbox" | undefined;
160
- 'aria-invalid'?: boolean | undefined;
161
- 'aria-keyshortcuts'?: string[] | undefined;
162
- 'aria-labelledby'?: string | undefined;
163
- 'aria-level'?: number | undefined;
164
- 'aria-live'?: "none" | "assertive" | "polite" | undefined;
165
- 'aria-multiline'?: boolean | undefined;
166
- 'aria-multiselectable'?: boolean | undefined;
167
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
168
- 'aria-owns'?: string | undefined;
169
- 'aria-placeholder'?: string | undefined;
170
- 'aria-posinset'?: number | undefined;
171
- 'aria-pressed'?: boolean | "mixed" | undefined;
172
- 'aria-readonly'?: boolean | undefined;
173
- 'aria-required'?: boolean | undefined;
174
- 'aria-roledescription'?: string | undefined;
175
- 'aria-rowcount'?: number | undefined;
176
- 'aria-rowindex'?: number | undefined;
177
- 'aria-rowspan'?: number | undefined;
178
- 'aria-setsize'?: number | undefined;
179
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
180
- accessibilityLabelledBy?: string | string[] | undefined;
181
- accessibilityLiveRegion?: "none" | "assertive" | "polite" | undefined;
182
- accessibilityElementsHidden?: boolean | undefined;
183
- accessibilityViewIsModal?: boolean | undefined;
184
- onAccessibilityEscape?: (() => void) | undefined;
185
- onAccessibilityTap?: (() => void) | undefined;
186
- onMagicTap?: (() => void) | undefined;
187
- accessibilityIgnoresInvertColors?: boolean | undefined;
188
- accessibilityLanguage?: string | undefined;
189
- textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
190
- textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
191
- onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
192
- onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
193
- onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
194
- onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
195
- underline?: boolean | undefined;
196
- allowFontScaling?: boolean | undefined;
197
- ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
198
- lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
199
- numberOfLines?: number | undefined;
200
- onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
201
- maxFontSizeMultiplier?: number | null | undefined;
202
- minimumFontScale?: number | undefined;
203
- adjustsFontSizeToFit?: boolean | undefined;
204
- dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
205
- suppressHighlighting?: boolean | undefined;
206
- lineBreakStrategyIOS?: "none" | "standard" | "hangul-word" | "push-out" | undefined;
207
- selectable?: boolean | undefined;
208
- selectionColor?: import("react-native").ColorValue | undefined;
209
- textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
210
- dataDetectorType?: "all" | "none" | "link" | "phoneNumber" | "email" | null | undefined;
211
- android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
212
- strikeThrough?: boolean | undefined;
213
- cursor?: import("react-native/Libraries/StyleSheet/StyleSheetTypes").CursorValue | undefined;
214
- transitionDuration?: string | string[] | undefined;
215
- transitionProperty?: string | string[] | undefined;
216
- transitionTimingFunction?: string | string[] | undefined;
217
- _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
218
- _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
219
- _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
220
- }>;
221
- var Header2: FC<{
222
- type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
223
- variant?: TypographyVariant | undefined;
224
- color?: ExtendedTypographyColor | undefined;
225
- children: ReactNode;
226
- base?: TypographyType | undefined;
227
- small?: TypographyType | undefined;
228
- medium?: TypographyType | undefined;
229
- large?: TypographyType | undefined;
230
- wide?: TypographyType | undefined;
231
- disabled?: boolean | undefined;
232
- alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
233
- alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
234
- justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
235
- justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
236
- flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
237
- flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
238
- flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
239
- flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
240
- flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
241
- flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
242
- alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
243
- hitSlop?: number | import("react-native").Insets | null | undefined;
244
- id?: string | undefined;
245
- needsOffscreenAlphaCompositing?: boolean | undefined;
246
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
247
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | undefined;
248
- removeClippedSubviews?: boolean | undefined;
249
- style?: import("react-native").StyleProp<TextStyle>;
250
- testID?: string | undefined;
251
- nativeID?: string | undefined;
252
- href?: string | undefined;
253
- hrefAttrs?: {
254
- download?: boolean | undefined;
255
- rel?: string | undefined;
256
- target?: string | undefined;
257
- } | undefined;
258
- onMouseDown?: import("react").MouseEventHandler<any> | undefined;
259
- onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
260
- onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
261
- onMouseMove?: import("react").MouseEventHandler<any> | undefined;
262
- onMouseOver?: import("react").MouseEventHandler<any> | undefined;
263
- onMouseOut?: import("react").MouseEventHandler<any> | undefined;
264
- onMouseUp?: import("react").MouseEventHandler<any> | undefined;
265
- collapsable?: boolean | undefined;
266
- renderToHardwareTextureAndroid?: boolean | undefined;
267
- focusable?: boolean | undefined;
268
- tabIndex?: 0 | -1 | undefined;
269
- shouldRasterizeIOS?: boolean | undefined;
270
- isTVSelectable?: boolean | undefined;
271
- hasTVPreferredFocus?: boolean | undefined;
272
- tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
273
- tvParallaxShiftDistanceX?: number | undefined;
274
- tvParallaxShiftDistanceY?: number | undefined;
275
- tvParallaxTiltAngle?: number | undefined;
276
- tvParallaxMagnification?: number | undefined;
277
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
278
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
279
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
280
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
281
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
282
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
283
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
284
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
285
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
286
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
287
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
288
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
289
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
290
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
291
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
292
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
293
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
294
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
295
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
296
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
297
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
298
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
299
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
300
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
301
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
302
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
303
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
304
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
305
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
306
- accessible?: boolean | undefined;
307
- accessibilityActions?: readonly Readonly<{
308
- name: string;
309
- label?: string | undefined;
310
- }>[] | undefined;
311
- accessibilityLabel?: string | undefined;
312
- 'aria-label'?: string | undefined;
313
- accessibilityState?: import("react-native").AccessibilityState | undefined;
314
- 'aria-busy'?: boolean | undefined;
315
- 'aria-checked'?: boolean | "mixed" | undefined;
316
- 'aria-disabled'?: boolean | undefined;
317
- 'aria-expanded'?: boolean | undefined;
318
- 'aria-selected'?: boolean | undefined;
319
- accessibilityHint?: string | undefined;
320
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
321
- 'aria-valuemax'?: number | undefined;
322
- 'aria-valuemin'?: number | undefined;
323
- 'aria-valuenow'?: number | undefined;
324
- 'aria-valuetext'?: string | undefined;
325
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
326
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
327
- 'aria-hidden'?: boolean | undefined;
328
- 'aria-modal'?: boolean | undefined;
329
- role?: import("react-native").Role | undefined;
330
- dataSet?: Record<string, string | number | boolean> | undefined;
331
- 'aria-activedescendant'?: string | undefined;
332
- 'aria-atomic'?: boolean | undefined;
333
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
334
- 'aria-colcount'?: number | undefined;
335
- 'aria-colindex'?: number | undefined;
336
- 'aria-colspan'?: number | undefined;
337
- 'aria-controls'?: string | undefined;
338
- 'aria-current'?: boolean | "page" | "step" | "location" | "date" | "time" | undefined;
339
- 'aria-describedby'?: string | undefined;
340
- 'aria-details'?: string | undefined;
341
- 'aria-errormessage'?: string | undefined;
342
- 'aria-flowto'?: string | undefined;
343
- 'aria-haspopup'?: false | "menu" | "dialog" | "grid" | "tree" | "listbox" | undefined;
344
- 'aria-invalid'?: boolean | undefined;
345
- 'aria-keyshortcuts'?: string[] | undefined;
346
- 'aria-labelledby'?: string | undefined;
347
- 'aria-level'?: number | undefined;
348
- 'aria-live'?: "none" | "assertive" | "polite" | undefined;
349
- 'aria-multiline'?: boolean | undefined;
350
- 'aria-multiselectable'?: boolean | undefined;
351
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
352
- 'aria-owns'?: string | undefined;
353
- 'aria-placeholder'?: string | undefined;
354
- 'aria-posinset'?: number | undefined;
355
- 'aria-pressed'?: boolean | "mixed" | undefined;
356
- 'aria-readonly'?: boolean | undefined;
357
- 'aria-required'?: boolean | undefined;
358
- 'aria-roledescription'?: string | undefined;
359
- 'aria-rowcount'?: number | undefined;
360
- 'aria-rowindex'?: number | undefined;
361
- 'aria-rowspan'?: number | undefined;
362
- 'aria-setsize'?: number | undefined;
363
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
364
- accessibilityLabelledBy?: string | string[] | undefined;
365
- accessibilityLiveRegion?: "none" | "assertive" | "polite" | undefined;
366
- accessibilityElementsHidden?: boolean | undefined;
367
- accessibilityViewIsModal?: boolean | undefined;
368
- onAccessibilityEscape?: (() => void) | undefined;
369
- onAccessibilityTap?: (() => void) | undefined;
370
- onMagicTap?: (() => void) | undefined;
371
- accessibilityIgnoresInvertColors?: boolean | undefined;
372
- accessibilityLanguage?: string | undefined;
373
- textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
374
- textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
375
- onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
376
- onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
377
- onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
378
- onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
379
- underline?: boolean | undefined;
380
- allowFontScaling?: boolean | undefined;
381
- ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
382
- lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
383
- numberOfLines?: number | undefined;
384
- onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
385
- maxFontSizeMultiplier?: number | null | undefined;
386
- minimumFontScale?: number | undefined;
387
- adjustsFontSizeToFit?: boolean | undefined;
388
- dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
389
- suppressHighlighting?: boolean | undefined;
390
- lineBreakStrategyIOS?: "none" | "standard" | "hangul-word" | "push-out" | undefined;
391
- selectable?: boolean | undefined;
392
- selectionColor?: import("react-native").ColorValue | undefined;
393
- textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
394
- dataDetectorType?: "all" | "none" | "link" | "phoneNumber" | "email" | null | undefined;
395
- android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
396
- strikeThrough?: boolean | undefined;
397
- cursor?: import("react-native/Libraries/StyleSheet/StyleSheetTypes").CursorValue | undefined;
398
- transitionDuration?: string | string[] | undefined;
399
- transitionProperty?: string | string[] | undefined;
400
- transitionTimingFunction?: string | string[] | undefined;
401
- _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
402
- _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
403
- _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
404
- }>;
405
- var Header3: FC<{
406
- type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
407
- variant?: TypographyVariant | undefined;
408
- color?: ExtendedTypographyColor | undefined;
409
- children: ReactNode;
410
- base?: TypographyType | undefined;
411
- small?: TypographyType | undefined;
412
- medium?: TypographyType | undefined;
413
- large?: TypographyType | undefined;
414
- wide?: TypographyType | undefined;
415
- disabled?: boolean | undefined;
416
- alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
417
- alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
418
- justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
419
- justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
420
- flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
421
- flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
422
- flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
423
- flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
424
- flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
425
- flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
426
- alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
427
- hitSlop?: number | import("react-native").Insets | null | undefined;
428
- id?: string | undefined;
429
- needsOffscreenAlphaCompositing?: boolean | undefined;
430
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
431
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | undefined;
432
- removeClippedSubviews?: boolean | undefined;
433
- style?: import("react-native").StyleProp<TextStyle>;
434
- testID?: string | undefined;
435
- nativeID?: string | undefined;
436
- href?: string | undefined;
437
- hrefAttrs?: {
438
- download?: boolean | undefined;
439
- rel?: string | undefined;
440
- target?: string | undefined;
441
- } | undefined;
442
- onMouseDown?: import("react").MouseEventHandler<any> | undefined;
443
- onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
444
- onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
445
- onMouseMove?: import("react").MouseEventHandler<any> | undefined;
446
- onMouseOver?: import("react").MouseEventHandler<any> | undefined;
447
- onMouseOut?: import("react").MouseEventHandler<any> | undefined;
448
- onMouseUp?: import("react").MouseEventHandler<any> | undefined;
449
- collapsable?: boolean | undefined;
450
- renderToHardwareTextureAndroid?: boolean | undefined;
451
- focusable?: boolean | undefined;
452
- tabIndex?: 0 | -1 | undefined;
453
- shouldRasterizeIOS?: boolean | undefined;
454
- isTVSelectable?: boolean | undefined;
455
- hasTVPreferredFocus?: boolean | undefined;
456
- tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
457
- tvParallaxShiftDistanceX?: number | undefined;
458
- tvParallaxShiftDistanceY?: number | undefined;
459
- tvParallaxTiltAngle?: number | undefined;
460
- tvParallaxMagnification?: number | undefined;
461
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
462
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
463
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
464
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
465
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
466
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
467
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
468
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
469
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
470
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
471
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
472
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
473
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
474
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
475
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
476
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
477
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
478
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
479
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
480
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
481
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
482
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
483
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
484
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
485
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
486
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
487
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
488
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
489
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
490
- accessible?: boolean | undefined;
491
- accessibilityActions?: readonly Readonly<{
492
- name: string;
493
- label?: string | undefined;
494
- }>[] | undefined;
495
- accessibilityLabel?: string | undefined;
496
- 'aria-label'?: string | undefined;
497
- accessibilityState?: import("react-native").AccessibilityState | undefined;
498
- 'aria-busy'?: boolean | undefined;
499
- 'aria-checked'?: boolean | "mixed" | undefined;
500
- 'aria-disabled'?: boolean | undefined;
501
- 'aria-expanded'?: boolean | undefined;
502
- 'aria-selected'?: boolean | undefined;
503
- accessibilityHint?: string | undefined;
504
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
505
- 'aria-valuemax'?: number | undefined;
506
- 'aria-valuemin'?: number | undefined;
507
- 'aria-valuenow'?: number | undefined;
508
- 'aria-valuetext'?: string | undefined;
509
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
510
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
511
- 'aria-hidden'?: boolean | undefined;
512
- 'aria-modal'?: boolean | undefined;
513
- role?: import("react-native").Role | undefined;
514
- dataSet?: Record<string, string | number | boolean> | undefined;
515
- 'aria-activedescendant'?: string | undefined;
516
- 'aria-atomic'?: boolean | undefined;
517
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
518
- 'aria-colcount'?: number | undefined;
519
- 'aria-colindex'?: number | undefined;
520
- 'aria-colspan'?: number | undefined;
521
- 'aria-controls'?: string | undefined;
522
- 'aria-current'?: boolean | "page" | "step" | "location" | "date" | "time" | undefined;
523
- 'aria-describedby'?: string | undefined;
524
- 'aria-details'?: string | undefined;
525
- 'aria-errormessage'?: string | undefined;
526
- 'aria-flowto'?: string | undefined;
527
- 'aria-haspopup'?: false | "menu" | "dialog" | "grid" | "tree" | "listbox" | undefined;
528
- 'aria-invalid'?: boolean | undefined;
529
- 'aria-keyshortcuts'?: string[] | undefined;
530
- 'aria-labelledby'?: string | undefined;
531
- 'aria-level'?: number | undefined;
532
- 'aria-live'?: "none" | "assertive" | "polite" | undefined;
533
- 'aria-multiline'?: boolean | undefined;
534
- 'aria-multiselectable'?: boolean | undefined;
535
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
536
- 'aria-owns'?: string | undefined;
537
- 'aria-placeholder'?: string | undefined;
538
- 'aria-posinset'?: number | undefined;
539
- 'aria-pressed'?: boolean | "mixed" | undefined;
540
- 'aria-readonly'?: boolean | undefined;
541
- 'aria-required'?: boolean | undefined;
542
- 'aria-roledescription'?: string | undefined;
543
- 'aria-rowcount'?: number | undefined;
544
- 'aria-rowindex'?: number | undefined;
545
- 'aria-rowspan'?: number | undefined;
546
- 'aria-setsize'?: number | undefined;
547
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
548
- accessibilityLabelledBy?: string | string[] | undefined;
549
- accessibilityLiveRegion?: "none" | "assertive" | "polite" | undefined;
550
- accessibilityElementsHidden?: boolean | undefined;
551
- accessibilityViewIsModal?: boolean | undefined;
552
- onAccessibilityEscape?: (() => void) | undefined;
553
- onAccessibilityTap?: (() => void) | undefined;
554
- onMagicTap?: (() => void) | undefined;
555
- accessibilityIgnoresInvertColors?: boolean | undefined;
556
- accessibilityLanguage?: string | undefined;
557
- textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
558
- textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
559
- onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
560
- onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
561
- onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
562
- onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
563
- underline?: boolean | undefined;
564
- allowFontScaling?: boolean | undefined;
565
- ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
566
- lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
567
- numberOfLines?: number | undefined;
568
- onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
569
- maxFontSizeMultiplier?: number | null | undefined;
570
- minimumFontScale?: number | undefined;
571
- adjustsFontSizeToFit?: boolean | undefined;
572
- dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
573
- suppressHighlighting?: boolean | undefined;
574
- lineBreakStrategyIOS?: "none" | "standard" | "hangul-word" | "push-out" | undefined;
575
- selectable?: boolean | undefined;
576
- selectionColor?: import("react-native").ColorValue | undefined;
577
- textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
578
- dataDetectorType?: "all" | "none" | "link" | "phoneNumber" | "email" | null | undefined;
579
- android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
580
- strikeThrough?: boolean | undefined;
581
- cursor?: import("react-native/Libraries/StyleSheet/StyleSheetTypes").CursorValue | undefined;
582
- transitionDuration?: string | string[] | undefined;
583
- transitionProperty?: string | string[] | undefined;
584
- transitionTimingFunction?: string | string[] | undefined;
585
- _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
586
- _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
587
- _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
588
- }>;
589
- var Header4: FC<{
590
- type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
591
- variant?: TypographyVariant | undefined;
592
- color?: ExtendedTypographyColor | undefined;
593
- children: ReactNode;
594
- base?: TypographyType | undefined;
595
- small?: TypographyType | undefined;
596
- medium?: TypographyType | undefined;
597
- large?: TypographyType | undefined;
598
- wide?: TypographyType | undefined;
599
- disabled?: boolean | undefined;
600
- alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
601
- alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
602
- justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
603
- justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
604
- flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
605
- flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
606
- flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
607
- flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
608
- flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
609
- flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
610
- alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
611
- hitSlop?: number | import("react-native").Insets | null | undefined;
612
- id?: string | undefined;
613
- needsOffscreenAlphaCompositing?: boolean | undefined;
614
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
615
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | undefined;
616
- removeClippedSubviews?: boolean | undefined;
617
- style?: import("react-native").StyleProp<TextStyle>;
618
- testID?: string | undefined;
619
- nativeID?: string | undefined;
620
- href?: string | undefined;
621
- hrefAttrs?: {
622
- download?: boolean | undefined;
623
- rel?: string | undefined;
624
- target?: string | undefined;
625
- } | undefined;
626
- onMouseDown?: import("react").MouseEventHandler<any> | undefined;
627
- onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
628
- onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
629
- onMouseMove?: import("react").MouseEventHandler<any> | undefined;
630
- onMouseOver?: import("react").MouseEventHandler<any> | undefined;
631
- onMouseOut?: import("react").MouseEventHandler<any> | undefined;
632
- onMouseUp?: import("react").MouseEventHandler<any> | undefined;
633
- collapsable?: boolean | undefined;
634
- renderToHardwareTextureAndroid?: boolean | undefined;
635
- focusable?: boolean | undefined;
636
- tabIndex?: 0 | -1 | undefined;
637
- shouldRasterizeIOS?: boolean | undefined;
638
- isTVSelectable?: boolean | undefined;
639
- hasTVPreferredFocus?: boolean | undefined;
640
- tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
641
- tvParallaxShiftDistanceX?: number | undefined;
642
- tvParallaxShiftDistanceY?: number | undefined;
643
- tvParallaxTiltAngle?: number | undefined;
644
- tvParallaxMagnification?: number | undefined;
645
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
646
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
647
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
648
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
649
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
650
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
651
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
652
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
653
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
654
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
655
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
656
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
657
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
658
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
659
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
660
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
661
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
662
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
663
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
664
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
665
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
666
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
667
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
668
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
669
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
670
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
671
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
672
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
673
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
674
- accessible?: boolean | undefined;
675
- accessibilityActions?: readonly Readonly<{
676
- name: string;
677
- label?: string | undefined;
678
- }>[] | undefined;
679
- accessibilityLabel?: string | undefined;
680
- 'aria-label'?: string | undefined;
681
- accessibilityState?: import("react-native").AccessibilityState | undefined;
682
- 'aria-busy'?: boolean | undefined;
683
- 'aria-checked'?: boolean | "mixed" | undefined;
684
- 'aria-disabled'?: boolean | undefined;
685
- 'aria-expanded'?: boolean | undefined;
686
- 'aria-selected'?: boolean | undefined;
687
- accessibilityHint?: string | undefined;
688
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
689
- 'aria-valuemax'?: number | undefined;
690
- 'aria-valuemin'?: number | undefined;
691
- 'aria-valuenow'?: number | undefined;
692
- 'aria-valuetext'?: string | undefined;
693
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
694
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
695
- 'aria-hidden'?: boolean | undefined;
696
- 'aria-modal'?: boolean | undefined;
697
- role?: import("react-native").Role | undefined;
698
- dataSet?: Record<string, string | number | boolean> | undefined;
699
- 'aria-activedescendant'?: string | undefined;
700
- 'aria-atomic'?: boolean | undefined;
701
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
702
- 'aria-colcount'?: number | undefined;
703
- 'aria-colindex'?: number | undefined;
704
- 'aria-colspan'?: number | undefined;
705
- 'aria-controls'?: string | undefined;
706
- 'aria-current'?: boolean | "page" | "step" | "location" | "date" | "time" | undefined;
707
- 'aria-describedby'?: string | undefined;
708
- 'aria-details'?: string | undefined;
709
- 'aria-errormessage'?: string | undefined;
710
- 'aria-flowto'?: string | undefined;
711
- 'aria-haspopup'?: false | "menu" | "dialog" | "grid" | "tree" | "listbox" | undefined;
712
- 'aria-invalid'?: boolean | undefined;
713
- 'aria-keyshortcuts'?: string[] | undefined;
714
- 'aria-labelledby'?: string | undefined;
715
- 'aria-level'?: number | undefined;
716
- 'aria-live'?: "none" | "assertive" | "polite" | undefined;
717
- 'aria-multiline'?: boolean | undefined;
718
- 'aria-multiselectable'?: boolean | undefined;
719
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
720
- 'aria-owns'?: string | undefined;
721
- 'aria-placeholder'?: string | undefined;
722
- 'aria-posinset'?: number | undefined;
723
- 'aria-pressed'?: boolean | "mixed" | undefined;
724
- 'aria-readonly'?: boolean | undefined;
725
- 'aria-required'?: boolean | undefined;
726
- 'aria-roledescription'?: string | undefined;
727
- 'aria-rowcount'?: number | undefined;
728
- 'aria-rowindex'?: number | undefined;
729
- 'aria-rowspan'?: number | undefined;
730
- 'aria-setsize'?: number | undefined;
731
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
732
- accessibilityLabelledBy?: string | string[] | undefined;
733
- accessibilityLiveRegion?: "none" | "assertive" | "polite" | undefined;
734
- accessibilityElementsHidden?: boolean | undefined;
735
- accessibilityViewIsModal?: boolean | undefined;
736
- onAccessibilityEscape?: (() => void) | undefined;
737
- onAccessibilityTap?: (() => void) | undefined;
738
- onMagicTap?: (() => void) | undefined;
739
- accessibilityIgnoresInvertColors?: boolean | undefined;
740
- accessibilityLanguage?: string | undefined;
741
- textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
742
- textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
743
- onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
744
- onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
745
- onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
746
- onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
747
- underline?: boolean | undefined;
748
- allowFontScaling?: boolean | undefined;
749
- ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
750
- lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
751
- numberOfLines?: number | undefined;
752
- onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
753
- maxFontSizeMultiplier?: number | null | undefined;
754
- minimumFontScale?: number | undefined;
755
- adjustsFontSizeToFit?: boolean | undefined;
756
- dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
757
- suppressHighlighting?: boolean | undefined;
758
- lineBreakStrategyIOS?: "none" | "standard" | "hangul-word" | "push-out" | undefined;
759
- selectable?: boolean | undefined;
760
- selectionColor?: import("react-native").ColorValue | undefined;
761
- textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
762
- dataDetectorType?: "all" | "none" | "link" | "phoneNumber" | "email" | null | undefined;
763
- android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
764
- strikeThrough?: boolean | undefined;
765
- cursor?: import("react-native/Libraries/StyleSheet/StyleSheetTypes").CursorValue | undefined;
766
- transitionDuration?: string | string[] | undefined;
767
- transitionProperty?: string | string[] | undefined;
768
- transitionTimingFunction?: string | string[] | undefined;
769
- _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
770
- _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
771
- _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
772
- }>;
773
- var Header5: FC<{
774
- type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
775
- variant?: TypographyVariant | undefined;
776
- color?: ExtendedTypographyColor | undefined;
777
- children: ReactNode;
778
- base?: TypographyType | undefined;
779
- small?: TypographyType | undefined;
780
- medium?: TypographyType | undefined;
781
- large?: TypographyType | undefined;
782
- wide?: TypographyType | undefined;
783
- disabled?: boolean | undefined;
784
- alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
785
- alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
786
- justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
787
- justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
788
- flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
789
- flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
790
- flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
791
- flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
792
- flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
793
- flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
794
- alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
795
- hitSlop?: number | import("react-native").Insets | null | undefined;
796
- id?: string | undefined;
797
- needsOffscreenAlphaCompositing?: boolean | undefined;
798
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
799
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | undefined;
800
- removeClippedSubviews?: boolean | undefined;
801
- style?: import("react-native").StyleProp<TextStyle>;
802
- testID?: string | undefined;
803
- nativeID?: string | undefined;
804
- href?: string | undefined;
805
- hrefAttrs?: {
806
- download?: boolean | undefined;
807
- rel?: string | undefined;
808
- target?: string | undefined;
809
- } | undefined;
810
- onMouseDown?: import("react").MouseEventHandler<any> | undefined;
811
- onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
812
- onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
813
- onMouseMove?: import("react").MouseEventHandler<any> | undefined;
814
- onMouseOver?: import("react").MouseEventHandler<any> | undefined;
815
- onMouseOut?: import("react").MouseEventHandler<any> | undefined;
816
- onMouseUp?: import("react").MouseEventHandler<any> | undefined;
817
- collapsable?: boolean | undefined;
818
- renderToHardwareTextureAndroid?: boolean | undefined;
819
- focusable?: boolean | undefined;
820
- tabIndex?: 0 | -1 | undefined;
821
- shouldRasterizeIOS?: boolean | undefined;
822
- isTVSelectable?: boolean | undefined;
823
- hasTVPreferredFocus?: boolean | undefined;
824
- tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
825
- tvParallaxShiftDistanceX?: number | undefined;
826
- tvParallaxShiftDistanceY?: number | undefined;
827
- tvParallaxTiltAngle?: number | undefined;
828
- tvParallaxMagnification?: number | undefined;
829
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
830
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
831
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
832
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
833
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
834
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
835
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
836
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
837
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
838
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
839
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
840
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
841
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
842
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
843
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
844
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
845
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
846
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
847
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
848
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
849
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
850
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
851
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
852
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
853
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
854
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
855
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
856
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
857
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
858
- accessible?: boolean | undefined;
859
- accessibilityActions?: readonly Readonly<{
860
- name: string;
861
- label?: string | undefined;
862
- }>[] | undefined;
863
- accessibilityLabel?: string | undefined;
864
- 'aria-label'?: string | undefined;
865
- accessibilityState?: import("react-native").AccessibilityState | undefined;
866
- 'aria-busy'?: boolean | undefined;
867
- 'aria-checked'?: boolean | "mixed" | undefined;
868
- 'aria-disabled'?: boolean | undefined;
869
- 'aria-expanded'?: boolean | undefined;
870
- 'aria-selected'?: boolean | undefined;
871
- accessibilityHint?: string | undefined;
872
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
873
- 'aria-valuemax'?: number | undefined;
874
- 'aria-valuemin'?: number | undefined;
875
- 'aria-valuenow'?: number | undefined;
876
- 'aria-valuetext'?: string | undefined;
877
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
878
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
879
- 'aria-hidden'?: boolean | undefined;
880
- 'aria-modal'?: boolean | undefined;
881
- role?: import("react-native").Role | undefined;
882
- dataSet?: Record<string, string | number | boolean> | undefined;
883
- 'aria-activedescendant'?: string | undefined;
884
- 'aria-atomic'?: boolean | undefined;
885
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
886
- 'aria-colcount'?: number | undefined;
887
- 'aria-colindex'?: number | undefined;
888
- 'aria-colspan'?: number | undefined;
889
- 'aria-controls'?: string | undefined;
890
- 'aria-current'?: boolean | "page" | "step" | "location" | "date" | "time" | undefined;
891
- 'aria-describedby'?: string | undefined;
892
- 'aria-details'?: string | undefined;
893
- 'aria-errormessage'?: string | undefined;
894
- 'aria-flowto'?: string | undefined;
895
- 'aria-haspopup'?: false | "menu" | "dialog" | "grid" | "tree" | "listbox" | undefined;
896
- 'aria-invalid'?: boolean | undefined;
897
- 'aria-keyshortcuts'?: string[] | undefined;
898
- 'aria-labelledby'?: string | undefined;
899
- 'aria-level'?: number | undefined;
900
- 'aria-live'?: "none" | "assertive" | "polite" | undefined;
901
- 'aria-multiline'?: boolean | undefined;
902
- 'aria-multiselectable'?: boolean | undefined;
903
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
904
- 'aria-owns'?: string | undefined;
905
- 'aria-placeholder'?: string | undefined;
906
- 'aria-posinset'?: number | undefined;
907
- 'aria-pressed'?: boolean | "mixed" | undefined;
908
- 'aria-readonly'?: boolean | undefined;
909
- 'aria-required'?: boolean | undefined;
910
- 'aria-roledescription'?: string | undefined;
911
- 'aria-rowcount'?: number | undefined;
912
- 'aria-rowindex'?: number | undefined;
913
- 'aria-rowspan'?: number | undefined;
914
- 'aria-setsize'?: number | undefined;
915
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
916
- accessibilityLabelledBy?: string | string[] | undefined;
917
- accessibilityLiveRegion?: "none" | "assertive" | "polite" | undefined;
918
- accessibilityElementsHidden?: boolean | undefined;
919
- accessibilityViewIsModal?: boolean | undefined;
920
- onAccessibilityEscape?: (() => void) | undefined;
921
- onAccessibilityTap?: (() => void) | undefined;
922
- onMagicTap?: (() => void) | undefined;
923
- accessibilityIgnoresInvertColors?: boolean | undefined;
924
- accessibilityLanguage?: string | undefined;
925
- textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
926
- textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
927
- onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
928
- onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
929
- onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
930
- onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
931
- underline?: boolean | undefined;
932
- allowFontScaling?: boolean | undefined;
933
- ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
934
- lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
935
- numberOfLines?: number | undefined;
936
- onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
937
- maxFontSizeMultiplier?: number | null | undefined;
938
- minimumFontScale?: number | undefined;
939
- adjustsFontSizeToFit?: boolean | undefined;
940
- dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
941
- suppressHighlighting?: boolean | undefined;
942
- lineBreakStrategyIOS?: "none" | "standard" | "hangul-word" | "push-out" | undefined;
943
- selectable?: boolean | undefined;
944
- selectionColor?: import("react-native").ColorValue | undefined;
945
- textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
946
- dataDetectorType?: "all" | "none" | "link" | "phoneNumber" | "email" | null | undefined;
947
- android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
948
- strikeThrough?: boolean | undefined;
949
- cursor?: import("react-native/Libraries/StyleSheet/StyleSheetTypes").CursorValue | undefined;
950
- transitionDuration?: string | string[] | undefined;
951
- transitionProperty?: string | string[] | undefined;
952
- transitionTimingFunction?: string | string[] | undefined;
953
- _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
954
- _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
955
- _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
956
- }>;
957
- var Header6: FC<{
958
- type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
959
- variant?: TypographyVariant | undefined;
960
- color?: ExtendedTypographyColor | undefined;
961
- children: ReactNode;
962
- base?: TypographyType | undefined;
963
- small?: TypographyType | undefined;
964
- medium?: TypographyType | undefined;
965
- large?: TypographyType | undefined;
966
- wide?: TypographyType | undefined;
967
- disabled?: boolean | undefined;
968
- alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
969
- alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
970
- justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
971
- justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
972
- flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
973
- flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
974
- flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
975
- flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
976
- flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
977
- flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
978
- alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
979
- hitSlop?: number | import("react-native").Insets | null | undefined;
980
- id?: string | undefined;
981
- needsOffscreenAlphaCompositing?: boolean | undefined;
982
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
983
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | undefined;
984
- removeClippedSubviews?: boolean | undefined;
985
- style?: import("react-native").StyleProp<TextStyle>;
986
- testID?: string | undefined;
987
- nativeID?: string | undefined;
988
- href?: string | undefined;
989
- hrefAttrs?: {
990
- download?: boolean | undefined;
991
- rel?: string | undefined;
992
- target?: string | undefined;
993
- } | undefined;
994
- onMouseDown?: import("react").MouseEventHandler<any> | undefined;
995
- onMouseEnter?: import("react").MouseEventHandler<any> | undefined;
996
- onMouseLeave?: import("react").MouseEventHandler<any> | undefined;
997
- onMouseMove?: import("react").MouseEventHandler<any> | undefined;
998
- onMouseOver?: import("react").MouseEventHandler<any> | undefined;
999
- onMouseOut?: import("react").MouseEventHandler<any> | undefined;
1000
- onMouseUp?: import("react").MouseEventHandler<any> | undefined;
1001
- collapsable?: boolean | undefined;
1002
- renderToHardwareTextureAndroid?: boolean | undefined;
1003
- focusable?: boolean | undefined;
1004
- tabIndex?: 0 | -1 | undefined;
1005
- shouldRasterizeIOS?: boolean | undefined;
1006
- isTVSelectable?: boolean | undefined;
1007
- hasTVPreferredFocus?: boolean | undefined;
1008
- tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
1009
- tvParallaxShiftDistanceX?: number | undefined;
1010
- tvParallaxShiftDistanceY?: number | undefined;
1011
- tvParallaxTiltAngle?: number | undefined;
1012
- tvParallaxMagnification?: number | undefined;
1013
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1014
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1015
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1016
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1017
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1018
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1019
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1020
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1021
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1022
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1023
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1024
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
1025
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1026
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1027
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1028
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1029
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1030
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
1031
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1032
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
1033
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1034
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
1035
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1036
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
1037
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1038
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
1039
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1040
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
1041
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1042
- accessible?: boolean | undefined;
1043
- accessibilityActions?: readonly Readonly<{
1044
- name: string;
1045
- label?: string | undefined;
1046
- }>[] | undefined;
1047
- accessibilityLabel?: string | undefined;
1048
- 'aria-label'?: string | undefined;
1049
- accessibilityState?: import("react-native").AccessibilityState | undefined;
1050
- 'aria-busy'?: boolean | undefined;
1051
- 'aria-checked'?: boolean | "mixed" | undefined;
1052
- 'aria-disabled'?: boolean | undefined;
1053
- 'aria-expanded'?: boolean | undefined;
1054
- 'aria-selected'?: boolean | undefined;
1055
- accessibilityHint?: string | undefined;
1056
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1057
- 'aria-valuemax'?: number | undefined;
1058
- 'aria-valuemin'?: number | undefined;
1059
- 'aria-valuenow'?: number | undefined;
1060
- 'aria-valuetext'?: string | undefined;
1061
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
1062
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
1063
- 'aria-hidden'?: boolean | undefined;
1064
- 'aria-modal'?: boolean | undefined;
1065
- role?: import("react-native").Role | undefined;
1066
- dataSet?: Record<string, string | number | boolean> | undefined;
1067
- 'aria-activedescendant'?: string | undefined;
1068
- 'aria-atomic'?: boolean | undefined;
1069
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
1070
- 'aria-colcount'?: number | undefined;
1071
- 'aria-colindex'?: number | undefined;
1072
- 'aria-colspan'?: number | undefined;
1073
- 'aria-controls'?: string | undefined;
1074
- 'aria-current'?: boolean | "page" | "step" | "location" | "date" | "time" | undefined;
1075
- 'aria-describedby'?: string | undefined;
1076
- 'aria-details'?: string | undefined;
1077
- 'aria-errormessage'?: string | undefined;
1078
- 'aria-flowto'?: string | undefined;
1079
- 'aria-haspopup'?: false | "menu" | "dialog" | "grid" | "tree" | "listbox" | undefined;
1080
- 'aria-invalid'?: boolean | undefined;
1081
- 'aria-keyshortcuts'?: string[] | undefined;
1082
- 'aria-labelledby'?: string | undefined;
1083
- 'aria-level'?: number | undefined;
1084
- 'aria-live'?: "none" | "assertive" | "polite" | undefined;
1085
- 'aria-multiline'?: boolean | undefined;
1086
- 'aria-multiselectable'?: boolean | undefined;
1087
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
1088
- 'aria-owns'?: string | undefined;
1089
- 'aria-placeholder'?: string | undefined;
1090
- 'aria-posinset'?: number | undefined;
1091
- 'aria-pressed'?: boolean | "mixed" | undefined;
1092
- 'aria-readonly'?: boolean | undefined;
1093
- 'aria-required'?: boolean | undefined;
1094
- 'aria-roledescription'?: string | undefined;
1095
- 'aria-rowcount'?: number | undefined;
1096
- 'aria-rowindex'?: number | undefined;
1097
- 'aria-rowspan'?: number | undefined;
1098
- 'aria-setsize'?: number | undefined;
1099
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
1100
- accessibilityLabelledBy?: string | string[] | undefined;
1101
- accessibilityLiveRegion?: "none" | "assertive" | "polite" | undefined;
1102
- accessibilityElementsHidden?: boolean | undefined;
1103
- accessibilityViewIsModal?: boolean | undefined;
1104
- onAccessibilityEscape?: (() => void) | undefined;
1105
- onAccessibilityTap?: (() => void) | undefined;
1106
- onMagicTap?: (() => void) | undefined;
1107
- accessibilityIgnoresInvertColors?: boolean | undefined;
1108
- accessibilityLanguage?: string | undefined;
1109
- textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
1110
- textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
1111
- onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1112
- onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1113
- onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1114
- onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1115
- underline?: boolean | undefined;
1116
- allowFontScaling?: boolean | undefined;
1117
- ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
1118
- lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
1119
- numberOfLines?: number | undefined;
1120
- onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
1121
- maxFontSizeMultiplier?: number | null | undefined;
1122
- minimumFontScale?: number | undefined;
1123
- adjustsFontSizeToFit?: boolean | undefined;
1124
- dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
1125
- suppressHighlighting?: boolean | undefined;
1126
- lineBreakStrategyIOS?: "none" | "standard" | "hangul-word" | "push-out" | undefined;
1127
- selectable?: boolean | undefined;
1128
- selectionColor?: import("react-native").ColorValue | undefined;
1129
- textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
1130
- dataDetectorType?: "all" | "none" | "link" | "phoneNumber" | "email" | null | undefined;
1131
- android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
1132
- strikeThrough?: boolean | undefined;
1133
- cursor?: import("react-native/Libraries/StyleSheet/StyleSheetTypes").CursorValue | undefined;
1134
- transitionDuration?: string | string[] | undefined;
1135
- transitionProperty?: string | string[] | undefined;
1136
- transitionTimingFunction?: string | string[] | undefined;
1137
- _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1138
- _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1139
- _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
1140
- }>;
1141
- }
35
+ type TypographyComponent = React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<ElementRef<typeof NBText>>> & {
36
+ SetDefaultColor: typeof TypographyDefaultColorContext.Provider;
37
+ Text: typeof TypographyText;
38
+ Paragraph: typeof TypographyParagraph;
39
+ Header1: ReturnType<typeof createHeading>;
40
+ Header2: ReturnType<typeof createHeading>;
41
+ Header3: ReturnType<typeof createHeading>;
42
+ Header4: ReturnType<typeof createHeading>;
43
+ Header5: ReturnType<typeof createHeading>;
44
+ Header6: ReturnType<typeof createHeading>;
45
+ };
1142
46
  export type TypographyTextProps = SetOptional<TypographyProps, 'accessibilityRole'>;
1143
- declare function TypographyText(props: TypographyTextProps): ReactNode;
1144
- declare function TypographyParagraph(props: TypographyTextProps): ReactNode;
47
+ declare const TypographyText: React.ForwardRefExoticComponent<{
48
+ type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
49
+ variant?: TypographyVariant | undefined;
50
+ color?: ExtendedTypographyColor | undefined;
51
+ children: ReactNode;
52
+ base?: TypographyType | undefined;
53
+ small?: TypographyType | undefined;
54
+ medium?: TypographyType | undefined;
55
+ large?: TypographyType | undefined;
56
+ wide?: TypographyType | undefined;
57
+ disabled?: boolean | undefined;
58
+ alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
59
+ alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
60
+ justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
61
+ justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
62
+ flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
63
+ flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
64
+ flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
65
+ flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
66
+ flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
67
+ flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
68
+ alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
69
+ hitSlop?: number | import("react-native").Insets | null | undefined;
70
+ id?: string | undefined;
71
+ needsOffscreenAlphaCompositing?: boolean | undefined;
72
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
73
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | undefined;
74
+ removeClippedSubviews?: boolean | undefined;
75
+ style?: import("react-native").StyleProp<TextStyle>;
76
+ testID?: string | undefined;
77
+ nativeID?: string | undefined;
78
+ href?: string | undefined;
79
+ hrefAttrs?: {
80
+ download?: boolean | undefined;
81
+ rel?: string | undefined;
82
+ target?: string | undefined;
83
+ } | undefined;
84
+ onMouseDown?: React.MouseEventHandler<any> | undefined;
85
+ onMouseEnter?: React.MouseEventHandler<any> | undefined;
86
+ onMouseLeave?: React.MouseEventHandler<any> | undefined;
87
+ onMouseMove?: React.MouseEventHandler<any> | undefined;
88
+ onMouseOver?: React.MouseEventHandler<any> | undefined;
89
+ onMouseOut?: React.MouseEventHandler<any> | undefined;
90
+ onMouseUp?: React.MouseEventHandler<any> | undefined;
91
+ collapsable?: boolean | undefined;
92
+ renderToHardwareTextureAndroid?: boolean | undefined;
93
+ focusable?: boolean | undefined;
94
+ tabIndex?: 0 | -1 | undefined;
95
+ shouldRasterizeIOS?: boolean | undefined;
96
+ isTVSelectable?: boolean | undefined;
97
+ hasTVPreferredFocus?: boolean | undefined;
98
+ tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
99
+ tvParallaxShiftDistanceX?: number | undefined;
100
+ tvParallaxShiftDistanceY?: number | undefined;
101
+ tvParallaxTiltAngle?: number | undefined;
102
+ tvParallaxMagnification?: number | undefined;
103
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
104
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
105
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
106
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
107
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
108
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
109
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
110
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
111
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
112
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
113
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
114
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
115
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
116
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
117
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
118
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
119
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
120
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
121
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
122
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
123
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
124
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
125
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
126
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
127
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
128
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
129
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
130
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
131
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
132
+ accessible?: boolean | undefined;
133
+ accessibilityActions?: readonly Readonly<{
134
+ name: string;
135
+ label?: string | undefined;
136
+ }>[] | undefined;
137
+ accessibilityLabel?: string | undefined;
138
+ 'aria-label'?: string | undefined;
139
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
140
+ 'aria-busy'?: boolean | undefined;
141
+ 'aria-checked'?: boolean | "mixed" | undefined;
142
+ 'aria-disabled'?: boolean | undefined;
143
+ 'aria-expanded'?: boolean | undefined;
144
+ 'aria-selected'?: boolean | undefined;
145
+ accessibilityHint?: string | undefined;
146
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
147
+ 'aria-valuemax'?: number | undefined;
148
+ 'aria-valuemin'?: number | undefined;
149
+ 'aria-valuenow'?: number | undefined;
150
+ 'aria-valuetext'?: string | undefined;
151
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
152
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
153
+ 'aria-hidden'?: boolean | undefined;
154
+ 'aria-modal'?: boolean | undefined;
155
+ role?: import("react-native").Role | undefined;
156
+ dataSet?: Record<string, string | number | boolean> | undefined;
157
+ 'aria-activedescendant'?: string | undefined;
158
+ 'aria-atomic'?: boolean | undefined;
159
+ 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
160
+ 'aria-colcount'?: number | undefined;
161
+ 'aria-colindex'?: number | undefined;
162
+ 'aria-colspan'?: number | undefined;
163
+ 'aria-controls'?: string | undefined;
164
+ 'aria-current'?: boolean | "page" | "step" | "location" | "date" | "time" | undefined;
165
+ 'aria-describedby'?: string | undefined;
166
+ 'aria-details'?: string | undefined;
167
+ 'aria-errormessage'?: string | undefined;
168
+ 'aria-flowto'?: string | undefined;
169
+ 'aria-haspopup'?: false | "menu" | "dialog" | "grid" | "tree" | "listbox" | undefined;
170
+ 'aria-invalid'?: boolean | undefined;
171
+ 'aria-keyshortcuts'?: string[] | undefined;
172
+ 'aria-labelledby'?: string | undefined;
173
+ 'aria-level'?: number | undefined;
174
+ 'aria-live'?: "none" | "assertive" | "polite" | undefined;
175
+ 'aria-multiline'?: boolean | undefined;
176
+ 'aria-multiselectable'?: boolean | undefined;
177
+ 'aria-orientation'?: "horizontal" | "vertical" | undefined;
178
+ 'aria-owns'?: string | undefined;
179
+ 'aria-placeholder'?: string | undefined;
180
+ 'aria-posinset'?: number | undefined;
181
+ 'aria-pressed'?: boolean | "mixed" | undefined;
182
+ 'aria-readonly'?: boolean | undefined;
183
+ 'aria-required'?: boolean | undefined;
184
+ 'aria-roledescription'?: string | undefined;
185
+ 'aria-rowcount'?: number | undefined;
186
+ 'aria-rowindex'?: number | undefined;
187
+ 'aria-rowspan'?: number | undefined;
188
+ 'aria-setsize'?: number | undefined;
189
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
190
+ accessibilityLabelledBy?: string | string[] | undefined;
191
+ accessibilityLiveRegion?: "none" | "assertive" | "polite" | undefined;
192
+ accessibilityElementsHidden?: boolean | undefined;
193
+ accessibilityViewIsModal?: boolean | undefined;
194
+ onAccessibilityEscape?: (() => void) | undefined;
195
+ onAccessibilityTap?: (() => void) | undefined;
196
+ onMagicTap?: (() => void) | undefined;
197
+ accessibilityIgnoresInvertColors?: boolean | undefined;
198
+ accessibilityLanguage?: string | undefined;
199
+ textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
200
+ textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
201
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
202
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
203
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
204
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
205
+ underline?: boolean | undefined;
206
+ allowFontScaling?: boolean | undefined;
207
+ ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
208
+ lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
209
+ numberOfLines?: number | undefined;
210
+ onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
211
+ maxFontSizeMultiplier?: number | null | undefined;
212
+ minimumFontScale?: number | undefined;
213
+ adjustsFontSizeToFit?: boolean | undefined;
214
+ dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
215
+ suppressHighlighting?: boolean | undefined;
216
+ lineBreakStrategyIOS?: "none" | "standard" | "hangul-word" | "push-out" | undefined;
217
+ selectable?: boolean | undefined;
218
+ selectionColor?: import("react-native").ColorValue | undefined;
219
+ textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
220
+ dataDetectorType?: "all" | "none" | "link" | "phoneNumber" | "email" | null | undefined;
221
+ android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
222
+ strikeThrough?: boolean | undefined;
223
+ cursor?: import("react-native/Libraries/StyleSheet/StyleSheetTypes").CursorValue | undefined;
224
+ transitionDuration?: string | string[] | undefined;
225
+ transitionProperty?: string | string[] | undefined;
226
+ transitionTimingFunction?: string | string[] | undefined;
227
+ _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
228
+ _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
229
+ _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
230
+ accessibilityRole?: NonNullable<import("react-native").AccessibilityRole | undefined> | "paragraph" | null | undefined;
231
+ } & React.RefAttributes<unknown>>;
232
+ declare const TypographyParagraph: React.ForwardRefExoticComponent<{
233
+ type?: Partial<KittResponsiveProp<TypographyType>> | undefined;
234
+ variant?: TypographyVariant | undefined;
235
+ color?: ExtendedTypographyColor | undefined;
236
+ children: ReactNode;
237
+ base?: TypographyType | undefined;
238
+ small?: TypographyType | undefined;
239
+ medium?: TypographyType | undefined;
240
+ large?: TypographyType | undefined;
241
+ wide?: TypographyType | undefined;
242
+ disabled?: boolean | undefined;
243
+ alignItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignItems | undefined>;
244
+ alignContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignContent | undefined>;
245
+ justifyItems?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyItems | undefined>;
246
+ justifyContent?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.JustifyContent | undefined>;
247
+ flexWrap?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexWrap | undefined>;
248
+ flexDirection?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexDirection | undefined>;
249
+ flex?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.Flex<0 | (string & {})> | undefined>;
250
+ flexGrow?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexGrow | undefined>;
251
+ flexShrink?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexShrink | undefined>;
252
+ flexBasis?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.FlexBasis<0 | (string & {})> | undefined>;
253
+ alignSelf?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.AlignSelf | undefined>;
254
+ hitSlop?: number | import("react-native").Insets | null | undefined;
255
+ id?: string | undefined;
256
+ needsOffscreenAlphaCompositing?: boolean | undefined;
257
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
258
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only" | undefined;
259
+ removeClippedSubviews?: boolean | undefined;
260
+ style?: import("react-native").StyleProp<TextStyle>;
261
+ testID?: string | undefined;
262
+ nativeID?: string | undefined;
263
+ href?: string | undefined;
264
+ hrefAttrs?: {
265
+ download?: boolean | undefined;
266
+ rel?: string | undefined;
267
+ target?: string | undefined;
268
+ } | undefined;
269
+ onMouseDown?: React.MouseEventHandler<any> | undefined;
270
+ onMouseEnter?: React.MouseEventHandler<any> | undefined;
271
+ onMouseLeave?: React.MouseEventHandler<any> | undefined;
272
+ onMouseMove?: React.MouseEventHandler<any> | undefined;
273
+ onMouseOver?: React.MouseEventHandler<any> | undefined;
274
+ onMouseOut?: React.MouseEventHandler<any> | undefined;
275
+ onMouseUp?: React.MouseEventHandler<any> | undefined;
276
+ collapsable?: boolean | undefined;
277
+ renderToHardwareTextureAndroid?: boolean | undefined;
278
+ focusable?: boolean | undefined;
279
+ tabIndex?: 0 | -1 | undefined;
280
+ shouldRasterizeIOS?: boolean | undefined;
281
+ isTVSelectable?: boolean | undefined;
282
+ hasTVPreferredFocus?: boolean | undefined;
283
+ tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
284
+ tvParallaxShiftDistanceX?: number | undefined;
285
+ tvParallaxShiftDistanceY?: number | undefined;
286
+ tvParallaxTiltAngle?: number | undefined;
287
+ tvParallaxMagnification?: number | undefined;
288
+ onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
289
+ onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
290
+ onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
291
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
292
+ onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
293
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
294
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
295
+ onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
296
+ onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
297
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
298
+ onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
299
+ onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
300
+ onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
301
+ onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
302
+ onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
303
+ onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
304
+ onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
305
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
306
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
307
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
308
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
309
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
310
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
311
+ onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
312
+ onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
313
+ onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
314
+ onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
315
+ onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
316
+ onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
317
+ accessible?: boolean | undefined;
318
+ accessibilityActions?: readonly Readonly<{
319
+ name: string;
320
+ label?: string | undefined;
321
+ }>[] | undefined;
322
+ accessibilityLabel?: string | undefined;
323
+ 'aria-label'?: string | undefined;
324
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
325
+ 'aria-busy'?: boolean | undefined;
326
+ 'aria-checked'?: boolean | "mixed" | undefined;
327
+ 'aria-disabled'?: boolean | undefined;
328
+ 'aria-expanded'?: boolean | undefined;
329
+ 'aria-selected'?: boolean | undefined;
330
+ accessibilityHint?: string | undefined;
331
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
332
+ 'aria-valuemax'?: number | undefined;
333
+ 'aria-valuemin'?: number | undefined;
334
+ 'aria-valuenow'?: number | undefined;
335
+ 'aria-valuetext'?: string | undefined;
336
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
337
+ importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
338
+ 'aria-hidden'?: boolean | undefined;
339
+ 'aria-modal'?: boolean | undefined;
340
+ role?: import("react-native").Role | undefined;
341
+ dataSet?: Record<string, string | number | boolean> | undefined;
342
+ 'aria-activedescendant'?: string | undefined;
343
+ 'aria-atomic'?: boolean | undefined;
344
+ 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
345
+ 'aria-colcount'?: number | undefined;
346
+ 'aria-colindex'?: number | undefined;
347
+ 'aria-colspan'?: number | undefined;
348
+ 'aria-controls'?: string | undefined;
349
+ 'aria-current'?: boolean | "page" | "step" | "location" | "date" | "time" | undefined;
350
+ 'aria-describedby'?: string | undefined;
351
+ 'aria-details'?: string | undefined;
352
+ 'aria-errormessage'?: string | undefined;
353
+ 'aria-flowto'?: string | undefined;
354
+ 'aria-haspopup'?: false | "menu" | "dialog" | "grid" | "tree" | "listbox" | undefined;
355
+ 'aria-invalid'?: boolean | undefined;
356
+ 'aria-keyshortcuts'?: string[] | undefined;
357
+ 'aria-labelledby'?: string | undefined;
358
+ 'aria-level'?: number | undefined;
359
+ 'aria-live'?: "none" | "assertive" | "polite" | undefined;
360
+ 'aria-multiline'?: boolean | undefined;
361
+ 'aria-multiselectable'?: boolean | undefined;
362
+ 'aria-orientation'?: "horizontal" | "vertical" | undefined;
363
+ 'aria-owns'?: string | undefined;
364
+ 'aria-placeholder'?: string | undefined;
365
+ 'aria-posinset'?: number | undefined;
366
+ 'aria-pressed'?: boolean | "mixed" | undefined;
367
+ 'aria-readonly'?: boolean | undefined;
368
+ 'aria-required'?: boolean | undefined;
369
+ 'aria-roledescription'?: string | undefined;
370
+ 'aria-rowcount'?: number | undefined;
371
+ 'aria-rowindex'?: number | undefined;
372
+ 'aria-rowspan'?: number | undefined;
373
+ 'aria-setsize'?: number | undefined;
374
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
375
+ accessibilityLabelledBy?: string | string[] | undefined;
376
+ accessibilityLiveRegion?: "none" | "assertive" | "polite" | undefined;
377
+ accessibilityElementsHidden?: boolean | undefined;
378
+ accessibilityViewIsModal?: boolean | undefined;
379
+ onAccessibilityEscape?: (() => void) | undefined;
380
+ onAccessibilityTap?: (() => void) | undefined;
381
+ onMagicTap?: (() => void) | undefined;
382
+ accessibilityIgnoresInvertColors?: boolean | undefined;
383
+ accessibilityLanguage?: string | undefined;
384
+ textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
385
+ textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
386
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
387
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
388
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
389
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
390
+ underline?: boolean | undefined;
391
+ allowFontScaling?: boolean | undefined;
392
+ ellipsizeMode?: "clip" | "head" | "middle" | "tail" | undefined;
393
+ lineBreakMode?: "clip" | "head" | "middle" | "tail" | undefined;
394
+ numberOfLines?: number | undefined;
395
+ onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
396
+ maxFontSizeMultiplier?: number | null | undefined;
397
+ minimumFontScale?: number | undefined;
398
+ adjustsFontSizeToFit?: boolean | undefined;
399
+ dynamicTypeRamp?: "body" | "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
400
+ suppressHighlighting?: boolean | undefined;
401
+ lineBreakStrategyIOS?: "none" | "standard" | "hangul-word" | "push-out" | undefined;
402
+ selectable?: boolean | undefined;
403
+ selectionColor?: import("react-native").ColorValue | undefined;
404
+ textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
405
+ dataDetectorType?: "all" | "none" | "link" | "phoneNumber" | "email" | null | undefined;
406
+ android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
407
+ strikeThrough?: boolean | undefined;
408
+ cursor?: import("react-native/Libraries/StyleSheet/StyleSheetTypes").CursorValue | undefined;
409
+ transitionDuration?: string | string[] | undefined;
410
+ transitionProperty?: string | string[] | undefined;
411
+ transitionTimingFunction?: string | string[] | undefined;
412
+ _web?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
413
+ _ios?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
414
+ _android?: Partial<NativeBaseTextPropsAcceptedProps> | undefined;
415
+ accessibilityRole?: NonNullable<import("react-native").AccessibilityRole | undefined> | "paragraph" | null | undefined;
416
+ } & React.RefAttributes<unknown>>;
1145
417
  export type TypographyHeadingProps = TypographyPropsWithoutAccessibilityRole;
1146
- export {};
418
+ declare const createHeading: (level: number, defaultBase?: TypographyHeadingProps['base']) => FC<TypographyHeadingProps>;
419
+ declare const Typography: TypographyComponent;
420
+ export { Typography };
1147
421
  //# sourceMappingURL=Typography.d.ts.map