react-native-fpay 0.2.9 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (120) hide show
  1. package/lib/module/FountainPayProvider.js +5 -1
  2. package/lib/module/FountainPayProvider.js.map +1 -1
  3. package/lib/module/core/api/index.js +22 -12
  4. package/lib/module/core/api/index.js.map +1 -1
  5. package/lib/module/engine/BLEReceiverService.js.map +1 -1
  6. package/lib/module/engine/FPEngine.js +24 -13
  7. package/lib/module/engine/FPEngine.js.map +1 -1
  8. package/lib/module/engine/useIsForeground.js +17 -0
  9. package/lib/module/engine/useIsForeground.js.map +1 -0
  10. package/lib/module/ui/components/AnimatedDots.js +68 -0
  11. package/lib/module/ui/components/AnimatedDots.js.map +1 -0
  12. package/lib/module/ui/components/ConfirmScreen.js +333 -0
  13. package/lib/module/ui/components/ConfirmScreen.js.map +1 -0
  14. package/lib/module/ui/modals/FPPaymentRequestModal.js +6 -8
  15. package/lib/module/ui/modals/FPPaymentRequestModal.js.map +1 -1
  16. package/lib/module/ui/modals/FPShell.js +7 -4
  17. package/lib/module/ui/modals/FPShell.js.map +1 -1
  18. package/lib/module/ui/screens/ReceiveScreen.js +379 -274
  19. package/lib/module/ui/screens/ReceiveScreen.js.map +1 -1
  20. package/lib/module/ui/screens/SendScreen.js +154 -45
  21. package/lib/module/ui/screens/SendScreen.js.map +1 -1
  22. package/lib/module/ui/screens/styles.js +89 -0
  23. package/lib/module/ui/screens/styles.js.map +1 -0
  24. package/lib/module/ui/screens/sub/receivePayment/Nfc/index.js +361 -0
  25. package/lib/module/ui/screens/sub/receivePayment/Nfc/index.js.map +1 -0
  26. package/lib/module/ui/screens/sub/receivePayment/Qr/index.js +338 -0
  27. package/lib/module/ui/screens/sub/receivePayment/Qr/index.js.map +1 -0
  28. package/lib/module/ui/screens/sub/receivePayment/Transfer/index.js +453 -0
  29. package/lib/module/ui/screens/sub/receivePayment/Transfer/index.js.map +1 -0
  30. package/lib/module/ui/screens/sub/{BluetoothSubScreen.js → sendPayment/BluetoothSubScreen.js} +25 -32
  31. package/lib/module/ui/screens/sub/sendPayment/BluetoothSubScreen.js.map +1 -0
  32. package/lib/module/ui/screens/sub/sendPayment/NFCSubScreen.js +354 -0
  33. package/lib/module/ui/screens/sub/sendPayment/NFCSubScreen.js.map +1 -0
  34. package/lib/module/ui/screens/sub/sendPayment/NQRSubScreen.js +440 -0
  35. package/lib/module/ui/screens/sub/sendPayment/NQRSubScreen.js.map +1 -0
  36. package/lib/module/ui/screens/sub/{ProximitySubScreen.js → sendPayment/ProximitySubScreen.js} +20 -111
  37. package/lib/module/ui/screens/sub/sendPayment/ProximitySubScreen.js.map +1 -0
  38. package/lib/module/ui/screens/sub/sendPayment/TransferSubScreen.js +327 -0
  39. package/lib/module/ui/screens/sub/sendPayment/TransferSubScreen.js.map +1 -0
  40. package/lib/typescript/src/FountainPayProvider.d.ts.map +1 -1
  41. package/lib/typescript/src/core/api/index.d.ts +20 -27
  42. package/lib/typescript/src/core/api/index.d.ts.map +1 -1
  43. package/lib/typescript/src/core/types/index.d.ts +56 -13
  44. package/lib/typescript/src/core/types/index.d.ts.map +1 -1
  45. package/lib/typescript/src/engine/BLEReceiverService.d.ts +2 -0
  46. package/lib/typescript/src/engine/BLEReceiverService.d.ts.map +1 -1
  47. package/lib/typescript/src/engine/FPEngine.d.ts +3 -1
  48. package/lib/typescript/src/engine/FPEngine.d.ts.map +1 -1
  49. package/lib/typescript/src/engine/useIsForeground.d.ts +2 -0
  50. package/lib/typescript/src/engine/useIsForeground.d.ts.map +1 -0
  51. package/lib/typescript/src/ui/components/AnimatedDots.d.ts +2 -0
  52. package/lib/typescript/src/ui/components/AnimatedDots.d.ts.map +1 -0
  53. package/lib/typescript/src/ui/components/ConfirmScreen.d.ts +10 -0
  54. package/lib/typescript/src/ui/components/ConfirmScreen.d.ts.map +1 -0
  55. package/lib/typescript/src/ui/components/OtpInput/Styles.d.ts +3 -3
  56. package/lib/typescript/src/ui/modals/FPPaymentRequestModal.d.ts.map +1 -1
  57. package/lib/typescript/src/ui/modals/FPShell.d.ts.map +1 -1
  58. package/lib/typescript/src/ui/screens/ReceiveScreen.d.ts +2 -9
  59. package/lib/typescript/src/ui/screens/ReceiveScreen.d.ts.map +1 -1
  60. package/lib/typescript/src/ui/screens/SendScreen.d.ts +4 -2
  61. package/lib/typescript/src/ui/screens/SendScreen.d.ts.map +1 -1
  62. package/lib/typescript/src/ui/screens/styles.d.ts +1390 -0
  63. package/lib/typescript/src/ui/screens/styles.d.ts.map +1 -0
  64. package/lib/typescript/src/ui/screens/sub/receivePayment/Nfc/index.d.ts +10 -0
  65. package/lib/typescript/src/ui/screens/sub/receivePayment/Nfc/index.d.ts.map +1 -0
  66. package/lib/typescript/src/ui/screens/sub/receivePayment/Qr/index.d.ts +10 -0
  67. package/lib/typescript/src/ui/screens/sub/receivePayment/Qr/index.d.ts.map +1 -0
  68. package/lib/typescript/src/ui/screens/sub/receivePayment/Transfer/index.d.ts +5 -0
  69. package/lib/typescript/src/ui/screens/sub/receivePayment/Transfer/index.d.ts.map +1 -0
  70. package/lib/typescript/src/ui/screens/sub/{BluetoothSubScreen.d.ts → sendPayment/BluetoothSubScreen.d.ts} +2 -11
  71. package/lib/typescript/src/ui/screens/sub/sendPayment/BluetoothSubScreen.d.ts.map +1 -0
  72. package/lib/typescript/src/ui/screens/sub/sendPayment/NFCSubScreen.d.ts +3 -0
  73. package/lib/typescript/src/ui/screens/sub/sendPayment/NFCSubScreen.d.ts.map +1 -0
  74. package/lib/typescript/src/ui/screens/sub/sendPayment/NQRSubScreen.d.ts +3 -0
  75. package/lib/typescript/src/ui/screens/sub/sendPayment/NQRSubScreen.d.ts.map +1 -0
  76. package/lib/typescript/src/ui/screens/sub/{ProximitySubScreen.d.ts → sendPayment/ProximitySubScreen.d.ts} +2 -10
  77. package/lib/typescript/src/ui/screens/sub/sendPayment/ProximitySubScreen.d.ts.map +1 -0
  78. package/lib/typescript/src/ui/screens/sub/sendPayment/TransferSubScreen.d.ts +3 -0
  79. package/lib/typescript/src/ui/screens/sub/sendPayment/TransferSubScreen.d.ts.map +1 -0
  80. package/package.json +1 -1
  81. package/src/FountainPayProvider.tsx +7 -1
  82. package/src/core/api/index.ts +34 -19
  83. package/src/core/types/index.ts +67 -13
  84. package/src/engine/BLEReceiverService.ts +2 -0
  85. package/src/engine/FPEngine.ts +29 -14
  86. package/src/engine/useIsForeground.ts +18 -0
  87. package/src/ui/components/AnimatedDots.tsx +81 -0
  88. package/src/ui/components/ConfirmScreen.tsx +421 -0
  89. package/src/ui/modals/FPPaymentRequestModal.tsx +7 -6
  90. package/src/ui/modals/FPShell.tsx +9 -9
  91. package/src/ui/screens/ReceiveScreen.tsx +266 -115
  92. package/src/ui/screens/SendScreen.tsx +141 -19
  93. package/src/ui/screens/styles.ts +101 -0
  94. package/src/ui/screens/sub/receivePayment/Nfc/index.tsx +418 -0
  95. package/src/ui/screens/sub/receivePayment/Qr/index.tsx +391 -0
  96. package/src/ui/screens/sub/receivePayment/Transfer/index.tsx +512 -0
  97. package/src/ui/screens/sub/{BluetoothSubScreen.tsx → sendPayment/BluetoothSubScreen.tsx} +27 -46
  98. package/src/ui/screens/sub/sendPayment/NFCSubScreen.tsx +302 -0
  99. package/src/ui/screens/sub/sendPayment/NQRSubScreen.tsx +490 -0
  100. package/src/ui/screens/sub/{ProximitySubScreen.tsx → sendPayment/ProximitySubScreen.tsx} +24 -44
  101. package/src/ui/screens/sub/sendPayment/TransferSubScreen.tsx +345 -0
  102. package/lib/module/ui/screens/sub/BluetoothSubScreen.js.map +0 -1
  103. package/lib/module/ui/screens/sub/NFCSubScreen.js +0 -164
  104. package/lib/module/ui/screens/sub/NFCSubScreen.js.map +0 -1
  105. package/lib/module/ui/screens/sub/NQRSubScreen.js +0 -131
  106. package/lib/module/ui/screens/sub/NQRSubScreen.js.map +0 -1
  107. package/lib/module/ui/screens/sub/ProximitySubScreen.js.map +0 -1
  108. package/lib/module/ui/screens/sub/TransferSubScreen.js +0 -353
  109. package/lib/module/ui/screens/sub/TransferSubScreen.js.map +0 -1
  110. package/lib/typescript/src/ui/screens/sub/BluetoothSubScreen.d.ts.map +0 -1
  111. package/lib/typescript/src/ui/screens/sub/NFCSubScreen.d.ts +0 -18
  112. package/lib/typescript/src/ui/screens/sub/NFCSubScreen.d.ts.map +0 -1
  113. package/lib/typescript/src/ui/screens/sub/NQRSubScreen.d.ts +0 -12
  114. package/lib/typescript/src/ui/screens/sub/NQRSubScreen.d.ts.map +0 -1
  115. package/lib/typescript/src/ui/screens/sub/ProximitySubScreen.d.ts.map +0 -1
  116. package/lib/typescript/src/ui/screens/sub/TransferSubScreen.d.ts +0 -11
  117. package/lib/typescript/src/ui/screens/sub/TransferSubScreen.d.ts.map +0 -1
  118. package/src/ui/screens/sub/NFCSubScreen.tsx +0 -86
  119. package/src/ui/screens/sub/NQRSubScreen.tsx +0 -62
  120. package/src/ui/screens/sub/TransferSubScreen.tsx +0 -147
@@ -0,0 +1,1390 @@
1
+ export declare const ButtonContainer: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
2
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
3
+ onAccessibilityTap?: (() => unknown) | undefined;
4
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
5
+ onMagicTap?: (() => unknown) | undefined;
6
+ onAccessibilityEscape?: (() => unknown) | undefined;
7
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
8
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
9
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
10
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
11
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
12
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
13
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
14
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
15
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
16
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
17
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
18
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
19
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
20
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
21
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
22
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
23
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
24
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
25
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
26
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
27
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
28
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
29
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
30
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
31
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
32
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
33
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
34
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
35
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
36
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
37
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
38
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
39
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
40
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
41
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
42
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
43
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
44
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
45
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
46
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
47
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
48
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
49
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
50
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
51
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
52
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
53
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
54
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
55
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
56
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
57
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
58
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
59
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
60
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
61
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
62
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
63
+ renderToHardwareTextureAndroid?: boolean | undefined;
64
+ hasTVPreferredFocus?: boolean | undefined;
65
+ nextFocusDown?: number | undefined;
66
+ nextFocusForward?: number | undefined;
67
+ nextFocusLeft?: number | undefined;
68
+ nextFocusRight?: number | undefined;
69
+ nextFocusUp?: number | undefined;
70
+ focusable?: boolean | undefined;
71
+ tabIndex?: 0 | -1;
72
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
73
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
74
+ shouldRasterizeIOS?: boolean | undefined;
75
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
76
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
77
+ "aria-labelledby"?: string | undefined;
78
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
79
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
80
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
81
+ screenReaderFocusable?: boolean;
82
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
83
+ accessibilityIgnoresInvertColors?: boolean | undefined;
84
+ accessibilityViewIsModal?: boolean | undefined;
85
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
86
+ accessibilityLargeContentTitle?: string | undefined;
87
+ "aria-modal"?: boolean | undefined;
88
+ accessibilityElementsHidden?: boolean | undefined;
89
+ accessibilityLanguage?: string | undefined;
90
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
91
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
92
+ accessible?: boolean | undefined;
93
+ accessibilityLabel?: string | undefined;
94
+ accessibilityHint?: string | undefined;
95
+ "aria-label"?: string | undefined;
96
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
97
+ role?: import("react-native").Role | undefined;
98
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
99
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
100
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
101
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
102
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
103
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
104
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
105
+ "aria-busy"?: boolean | undefined;
106
+ "aria-checked"?: (boolean | undefined) | "mixed";
107
+ "aria-disabled"?: boolean | undefined;
108
+ "aria-expanded"?: boolean | undefined;
109
+ "aria-selected"?: boolean | undefined;
110
+ "aria-hidden"?: boolean | undefined;
111
+ }>, "id" | "pointerEvents" | "style" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
112
+ children?: React.ReactNode;
113
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
114
+ collapsable?: boolean | undefined;
115
+ collapsableChildren?: boolean | undefined;
116
+ id?: string;
117
+ testID?: string | undefined;
118
+ nativeID?: string | undefined;
119
+ needsOffscreenAlphaCompositing?: boolean | undefined;
120
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
121
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
122
+ removeClippedSubviews?: boolean | undefined;
123
+ experimental_accessibilityOrder?: Array<string> | undefined;
124
+ }>, never>>, "ref"> & {
125
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
126
+ }, never>>;
127
+ export declare const CTAButton: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
128
+ children?: React.ReactNode | undefined;
129
+ delayLongPress?: number | undefined;
130
+ delayPressIn?: number | undefined;
131
+ delayPressOut?: number | undefined;
132
+ disabled?: boolean | undefined;
133
+ focusable?: boolean | undefined;
134
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
135
+ id?: string;
136
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
137
+ nativeID?: string | undefined;
138
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
139
+ onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
140
+ onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
141
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
142
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
143
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
144
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
145
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
146
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
147
+ rejectResponderTermination?: boolean | undefined;
148
+ testID?: string | undefined;
149
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
150
+ } & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
151
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
152
+ "aria-labelledby"?: string | undefined;
153
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
154
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
155
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
156
+ screenReaderFocusable?: boolean;
157
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
158
+ accessibilityIgnoresInvertColors?: boolean | undefined;
159
+ accessibilityViewIsModal?: boolean | undefined;
160
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
161
+ accessibilityLargeContentTitle?: string | undefined;
162
+ "aria-modal"?: boolean | undefined;
163
+ accessibilityElementsHidden?: boolean | undefined;
164
+ accessibilityLanguage?: string | undefined;
165
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
166
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
167
+ accessible?: boolean | undefined;
168
+ accessibilityLabel?: string | undefined;
169
+ accessibilityHint?: string | undefined;
170
+ "aria-label"?: string | undefined;
171
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
172
+ role?: import("react-native").Role | undefined;
173
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
174
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
175
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
176
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
177
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
178
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
179
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
180
+ "aria-busy"?: boolean | undefined;
181
+ "aria-checked"?: (boolean | undefined) | "mixed";
182
+ "aria-disabled"?: boolean | undefined;
183
+ "aria-expanded"?: boolean | undefined;
184
+ "aria-selected"?: boolean | undefined;
185
+ "aria-hidden"?: boolean | undefined;
186
+ }>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
187
+ hasTVPreferredFocus?: boolean | undefined;
188
+ nextFocusDown?: number | undefined;
189
+ nextFocusForward?: number | undefined;
190
+ nextFocusLeft?: number | undefined;
191
+ nextFocusRight?: number | undefined;
192
+ nextFocusUp?: number | undefined;
193
+ }>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
194
+ activeOpacity?: number | undefined;
195
+ style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
196
+ hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
197
+ }>, never>>, "ref"> & {
198
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>>;
199
+ }, never>>;
200
+ export declare const CTAText: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
201
+ onPointerEnter?: (event: import("react-native").PointerEvent) => void;
202
+ onPointerLeave?: (event: import("react-native").PointerEvent) => void;
203
+ onPointerMove?: (event: import("react-native").PointerEvent) => void;
204
+ }>, "id" | "onPress" | "disabled" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "nativeID" | "onAccessibilityAction" | "onLayout" | "onLongPress" | "onPressIn" | "onPressOut" | "pressRetentionOffset" | "testID" | "onMoveShouldSetResponder" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "adjustsFontSizeToFit" | "dynamicTypeRamp" | "suppressHighlighting" | "lineBreakStrategyIOS" | "selectionColor" | "dataDetectorType" | "textBreakStrategy" | "minimumFontScale" | "allowFontScaling" | "android_hyphenationFrequency" | "ellipsizeMode" | "maxFontSizeMultiplier" | "numberOfLines" | "onTextLayout" | "selectable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsIOS, "id" | "onPress" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "nativeID" | "onAccessibilityAction" | "onLayout" | "onLongPress" | "onPressIn" | "onPressOut" | "pressRetentionOffset" | "testID" | "onMoveShouldSetResponder" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | keyof import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid | "allowFontScaling" | "android_hyphenationFrequency" | "ellipsizeMode" | "maxFontSizeMultiplier" | "numberOfLines" | "onTextLayout" | "selectable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid, "id" | "onPress" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "nativeID" | "onAccessibilityAction" | "onLayout" | "onLongPress" | "onPressIn" | "onPressOut" | "pressRetentionOffset" | "testID" | "onMoveShouldSetResponder" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "allowFontScaling" | "android_hyphenationFrequency" | "ellipsizeMode" | "maxFontSizeMultiplier" | "numberOfLines" | "onTextLayout" | "selectable"> & Omit<Readonly<{
205
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
206
+ allowFontScaling?: boolean | undefined;
207
+ android_hyphenationFrequency?: ("normal" | "none" | "full") | undefined;
208
+ children?: React.ReactNode | undefined;
209
+ ellipsizeMode?: ("clip" | "head" | "middle" | "tail") | undefined;
210
+ id?: string;
211
+ maxFontSizeMultiplier?: number | undefined;
212
+ nativeID?: string | undefined;
213
+ numberOfLines?: number | undefined;
214
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
215
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
216
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
217
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
218
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
219
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
220
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
221
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
222
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
223
+ onResponderTerminationRequest?: (() => boolean) | undefined;
224
+ onStartShouldSetResponder?: (() => boolean) | undefined;
225
+ onMoveShouldSetResponder?: (() => boolean) | undefined;
226
+ onTextLayout?: ((event: import("react-native").TextLayoutEvent) => unknown) | undefined;
227
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/Text/TextProps").PressRetentionOffset | undefined;
228
+ role?: import("react-native").Role | undefined;
229
+ selectable?: boolean | undefined;
230
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
231
+ testID?: string | undefined;
232
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<Readonly<Omit<Readonly<{
233
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
234
+ "aria-labelledby"?: string | undefined;
235
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
236
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
237
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
238
+ screenReaderFocusable?: boolean;
239
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
240
+ accessibilityIgnoresInvertColors?: boolean | undefined;
241
+ accessibilityViewIsModal?: boolean | undefined;
242
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
243
+ accessibilityLargeContentTitle?: string | undefined;
244
+ "aria-modal"?: boolean | undefined;
245
+ accessibilityElementsHidden?: boolean | undefined;
246
+ accessibilityLanguage?: string | undefined;
247
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
248
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
249
+ accessible?: boolean | undefined;
250
+ accessibilityLabel?: string | undefined;
251
+ accessibilityHint?: string | undefined;
252
+ "aria-label"?: string | undefined;
253
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
254
+ role?: import("react-native").Role | undefined;
255
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
256
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
257
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
258
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
259
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
260
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
261
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
262
+ "aria-busy"?: boolean | undefined;
263
+ "aria-checked"?: (boolean | undefined) | "mixed";
264
+ "aria-disabled"?: boolean | undefined;
265
+ "aria-expanded"?: boolean | undefined;
266
+ "aria-selected"?: boolean | undefined;
267
+ "aria-hidden"?: boolean | undefined;
268
+ }>, never>>, "ref"> & {
269
+ ref?: React.Ref<import("react-native/types_generated/src/private/webapis/dom/nodes/ReactNativeElement").default>;
270
+ }, never>>;
271
+ export declare const HomeIndicator: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
272
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
273
+ onAccessibilityTap?: (() => unknown) | undefined;
274
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
275
+ onMagicTap?: (() => unknown) | undefined;
276
+ onAccessibilityEscape?: (() => unknown) | undefined;
277
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
278
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
279
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
280
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
281
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
282
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
283
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
284
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
285
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
286
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
287
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
288
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
289
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
290
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
291
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
292
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
293
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
294
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
295
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
296
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
297
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
298
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
299
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
300
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
301
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
302
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
303
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
304
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
305
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
306
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
307
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
308
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
309
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
310
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
311
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
312
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
313
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
314
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
315
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
316
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
317
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
318
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
319
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
320
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
321
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
322
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
323
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
324
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
325
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
326
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
327
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
328
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
329
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
330
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
331
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
332
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
333
+ renderToHardwareTextureAndroid?: boolean | undefined;
334
+ hasTVPreferredFocus?: boolean | undefined;
335
+ nextFocusDown?: number | undefined;
336
+ nextFocusForward?: number | undefined;
337
+ nextFocusLeft?: number | undefined;
338
+ nextFocusRight?: number | undefined;
339
+ nextFocusUp?: number | undefined;
340
+ focusable?: boolean | undefined;
341
+ tabIndex?: 0 | -1;
342
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
343
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
344
+ shouldRasterizeIOS?: boolean | undefined;
345
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
346
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
347
+ "aria-labelledby"?: string | undefined;
348
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
349
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
350
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
351
+ screenReaderFocusable?: boolean;
352
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
353
+ accessibilityIgnoresInvertColors?: boolean | undefined;
354
+ accessibilityViewIsModal?: boolean | undefined;
355
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
356
+ accessibilityLargeContentTitle?: string | undefined;
357
+ "aria-modal"?: boolean | undefined;
358
+ accessibilityElementsHidden?: boolean | undefined;
359
+ accessibilityLanguage?: string | undefined;
360
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
361
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
362
+ accessible?: boolean | undefined;
363
+ accessibilityLabel?: string | undefined;
364
+ accessibilityHint?: string | undefined;
365
+ "aria-label"?: string | undefined;
366
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
367
+ role?: import("react-native").Role | undefined;
368
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
369
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
370
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
371
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
372
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
373
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
374
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
375
+ "aria-busy"?: boolean | undefined;
376
+ "aria-checked"?: (boolean | undefined) | "mixed";
377
+ "aria-disabled"?: boolean | undefined;
378
+ "aria-expanded"?: boolean | undefined;
379
+ "aria-selected"?: boolean | undefined;
380
+ "aria-hidden"?: boolean | undefined;
381
+ }>, "id" | "pointerEvents" | "style" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
382
+ children?: React.ReactNode;
383
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
384
+ collapsable?: boolean | undefined;
385
+ collapsableChildren?: boolean | undefined;
386
+ id?: string;
387
+ testID?: string | undefined;
388
+ nativeID?: string | undefined;
389
+ needsOffscreenAlphaCompositing?: boolean | undefined;
390
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
391
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
392
+ removeClippedSubviews?: boolean | undefined;
393
+ experimental_accessibilityOrder?: Array<string> | undefined;
394
+ }>, never>>, "ref"> & {
395
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
396
+ }, never>>;
397
+ export declare const ContentContainer: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
398
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
399
+ onAccessibilityTap?: (() => unknown) | undefined;
400
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
401
+ onMagicTap?: (() => unknown) | undefined;
402
+ onAccessibilityEscape?: (() => unknown) | undefined;
403
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
404
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
405
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
406
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
407
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
408
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
409
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
410
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
411
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
412
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
413
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
414
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
415
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
416
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
417
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
418
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
419
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
420
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
421
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
422
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
423
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
424
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
425
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
426
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
427
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
428
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
429
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
430
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
431
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
432
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
433
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
434
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
435
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
436
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
437
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
438
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
439
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
440
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
441
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
442
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
443
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
444
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
445
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
446
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
447
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
448
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
449
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
450
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
451
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
452
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
453
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
454
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
455
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
456
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
457
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
458
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
459
+ renderToHardwareTextureAndroid?: boolean | undefined;
460
+ hasTVPreferredFocus?: boolean | undefined;
461
+ nextFocusDown?: number | undefined;
462
+ nextFocusForward?: number | undefined;
463
+ nextFocusLeft?: number | undefined;
464
+ nextFocusRight?: number | undefined;
465
+ nextFocusUp?: number | undefined;
466
+ focusable?: boolean | undefined;
467
+ tabIndex?: 0 | -1;
468
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
469
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
470
+ shouldRasterizeIOS?: boolean | undefined;
471
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
472
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
473
+ "aria-labelledby"?: string | undefined;
474
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
475
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
476
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
477
+ screenReaderFocusable?: boolean;
478
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
479
+ accessibilityIgnoresInvertColors?: boolean | undefined;
480
+ accessibilityViewIsModal?: boolean | undefined;
481
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
482
+ accessibilityLargeContentTitle?: string | undefined;
483
+ "aria-modal"?: boolean | undefined;
484
+ accessibilityElementsHidden?: boolean | undefined;
485
+ accessibilityLanguage?: string | undefined;
486
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
487
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
488
+ accessible?: boolean | undefined;
489
+ accessibilityLabel?: string | undefined;
490
+ accessibilityHint?: string | undefined;
491
+ "aria-label"?: string | undefined;
492
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
493
+ role?: import("react-native").Role | undefined;
494
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
495
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
496
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
497
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
498
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
499
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
500
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
501
+ "aria-busy"?: boolean | undefined;
502
+ "aria-checked"?: (boolean | undefined) | "mixed";
503
+ "aria-disabled"?: boolean | undefined;
504
+ "aria-expanded"?: boolean | undefined;
505
+ "aria-selected"?: boolean | undefined;
506
+ "aria-hidden"?: boolean | undefined;
507
+ }>, "id" | "pointerEvents" | "style" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
508
+ children?: React.ReactNode;
509
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
510
+ collapsable?: boolean | undefined;
511
+ collapsableChildren?: boolean | undefined;
512
+ id?: string;
513
+ testID?: string | undefined;
514
+ nativeID?: string | undefined;
515
+ needsOffscreenAlphaCompositing?: boolean | undefined;
516
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
517
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
518
+ removeClippedSubviews?: boolean | undefined;
519
+ experimental_accessibilityOrder?: Array<string> | undefined;
520
+ }>, never>>, "ref"> & {
521
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
522
+ }, never>>;
523
+ export declare const List: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
524
+ children?: React.ReactNode | undefined;
525
+ delayLongPress?: number | undefined;
526
+ delayPressIn?: number | undefined;
527
+ delayPressOut?: number | undefined;
528
+ disabled?: boolean | undefined;
529
+ focusable?: boolean | undefined;
530
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
531
+ id?: string;
532
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
533
+ nativeID?: string | undefined;
534
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
535
+ onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
536
+ onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
537
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
538
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
539
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
540
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
541
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
542
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
543
+ rejectResponderTermination?: boolean | undefined;
544
+ testID?: string | undefined;
545
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
546
+ } & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
547
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
548
+ "aria-labelledby"?: string | undefined;
549
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
550
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
551
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
552
+ screenReaderFocusable?: boolean;
553
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
554
+ accessibilityIgnoresInvertColors?: boolean | undefined;
555
+ accessibilityViewIsModal?: boolean | undefined;
556
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
557
+ accessibilityLargeContentTitle?: string | undefined;
558
+ "aria-modal"?: boolean | undefined;
559
+ accessibilityElementsHidden?: boolean | undefined;
560
+ accessibilityLanguage?: string | undefined;
561
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
562
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
563
+ accessible?: boolean | undefined;
564
+ accessibilityLabel?: string | undefined;
565
+ accessibilityHint?: string | undefined;
566
+ "aria-label"?: string | undefined;
567
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
568
+ role?: import("react-native").Role | undefined;
569
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
570
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
571
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
572
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
573
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
574
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
575
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
576
+ "aria-busy"?: boolean | undefined;
577
+ "aria-checked"?: (boolean | undefined) | "mixed";
578
+ "aria-disabled"?: boolean | undefined;
579
+ "aria-expanded"?: boolean | undefined;
580
+ "aria-selected"?: boolean | undefined;
581
+ "aria-hidden"?: boolean | undefined;
582
+ }>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
583
+ hasTVPreferredFocus?: boolean | undefined;
584
+ nextFocusDown?: number | undefined;
585
+ nextFocusForward?: number | undefined;
586
+ nextFocusLeft?: number | undefined;
587
+ nextFocusRight?: number | undefined;
588
+ nextFocusUp?: number | undefined;
589
+ }>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
590
+ activeOpacity?: number | undefined;
591
+ style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
592
+ hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
593
+ }>, never>>, "ref"> & {
594
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>>;
595
+ }, never>>;
596
+ export declare const ListText: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
597
+ onPointerEnter?: (event: import("react-native").PointerEvent) => void;
598
+ onPointerLeave?: (event: import("react-native").PointerEvent) => void;
599
+ onPointerMove?: (event: import("react-native").PointerEvent) => void;
600
+ }>, "id" | "onPress" | "disabled" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "nativeID" | "onAccessibilityAction" | "onLayout" | "onLongPress" | "onPressIn" | "onPressOut" | "pressRetentionOffset" | "testID" | "onMoveShouldSetResponder" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "adjustsFontSizeToFit" | "dynamicTypeRamp" | "suppressHighlighting" | "lineBreakStrategyIOS" | "selectionColor" | "dataDetectorType" | "textBreakStrategy" | "minimumFontScale" | "allowFontScaling" | "android_hyphenationFrequency" | "ellipsizeMode" | "maxFontSizeMultiplier" | "numberOfLines" | "onTextLayout" | "selectable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsIOS, "id" | "onPress" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "nativeID" | "onAccessibilityAction" | "onLayout" | "onLongPress" | "onPressIn" | "onPressOut" | "pressRetentionOffset" | "testID" | "onMoveShouldSetResponder" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | keyof import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid | "allowFontScaling" | "android_hyphenationFrequency" | "ellipsizeMode" | "maxFontSizeMultiplier" | "numberOfLines" | "onTextLayout" | "selectable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid, "id" | "onPress" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "nativeID" | "onAccessibilityAction" | "onLayout" | "onLongPress" | "onPressIn" | "onPressOut" | "pressRetentionOffset" | "testID" | "onMoveShouldSetResponder" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "allowFontScaling" | "android_hyphenationFrequency" | "ellipsizeMode" | "maxFontSizeMultiplier" | "numberOfLines" | "onTextLayout" | "selectable"> & Omit<Readonly<{
601
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
602
+ allowFontScaling?: boolean | undefined;
603
+ android_hyphenationFrequency?: ("normal" | "none" | "full") | undefined;
604
+ children?: React.ReactNode | undefined;
605
+ ellipsizeMode?: ("clip" | "head" | "middle" | "tail") | undefined;
606
+ id?: string;
607
+ maxFontSizeMultiplier?: number | undefined;
608
+ nativeID?: string | undefined;
609
+ numberOfLines?: number | undefined;
610
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
611
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
612
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
613
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
614
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
615
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
616
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
617
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
618
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
619
+ onResponderTerminationRequest?: (() => boolean) | undefined;
620
+ onStartShouldSetResponder?: (() => boolean) | undefined;
621
+ onMoveShouldSetResponder?: (() => boolean) | undefined;
622
+ onTextLayout?: ((event: import("react-native").TextLayoutEvent) => unknown) | undefined;
623
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/Text/TextProps").PressRetentionOffset | undefined;
624
+ role?: import("react-native").Role | undefined;
625
+ selectable?: boolean | undefined;
626
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
627
+ testID?: string | undefined;
628
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<Readonly<Omit<Readonly<{
629
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
630
+ "aria-labelledby"?: string | undefined;
631
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
632
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
633
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
634
+ screenReaderFocusable?: boolean;
635
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
636
+ accessibilityIgnoresInvertColors?: boolean | undefined;
637
+ accessibilityViewIsModal?: boolean | undefined;
638
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
639
+ accessibilityLargeContentTitle?: string | undefined;
640
+ "aria-modal"?: boolean | undefined;
641
+ accessibilityElementsHidden?: boolean | undefined;
642
+ accessibilityLanguage?: string | undefined;
643
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
644
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
645
+ accessible?: boolean | undefined;
646
+ accessibilityLabel?: string | undefined;
647
+ accessibilityHint?: string | undefined;
648
+ "aria-label"?: string | undefined;
649
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
650
+ role?: import("react-native").Role | undefined;
651
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
652
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
653
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
654
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
655
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
656
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
657
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
658
+ "aria-busy"?: boolean | undefined;
659
+ "aria-checked"?: (boolean | undefined) | "mixed";
660
+ "aria-disabled"?: boolean | undefined;
661
+ "aria-expanded"?: boolean | undefined;
662
+ "aria-selected"?: boolean | undefined;
663
+ "aria-hidden"?: boolean | undefined;
664
+ }>, never>>, "ref"> & {
665
+ ref?: React.Ref<import("react-native/types_generated/src/private/webapis/dom/nodes/ReactNativeElement").default>;
666
+ }, never>>;
667
+ export declare const InputContainer: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
668
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
669
+ onAccessibilityTap?: (() => unknown) | undefined;
670
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
671
+ onMagicTap?: (() => unknown) | undefined;
672
+ onAccessibilityEscape?: (() => unknown) | undefined;
673
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
674
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
675
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
676
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
677
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
678
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
679
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
680
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
681
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
682
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
683
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
684
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
685
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
686
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
687
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
688
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
689
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
690
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
691
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
692
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
693
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
694
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
695
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
696
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
697
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
698
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
699
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
700
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
701
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
702
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
703
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
704
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
705
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
706
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
707
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
708
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
709
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
710
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
711
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
712
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
713
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
714
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
715
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
716
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
717
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
718
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
719
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
720
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
721
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
722
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
723
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
724
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
725
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
726
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
727
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
728
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
729
+ renderToHardwareTextureAndroid?: boolean | undefined;
730
+ hasTVPreferredFocus?: boolean | undefined;
731
+ nextFocusDown?: number | undefined;
732
+ nextFocusForward?: number | undefined;
733
+ nextFocusLeft?: number | undefined;
734
+ nextFocusRight?: number | undefined;
735
+ nextFocusUp?: number | undefined;
736
+ focusable?: boolean | undefined;
737
+ tabIndex?: 0 | -1;
738
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
739
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
740
+ shouldRasterizeIOS?: boolean | undefined;
741
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
742
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
743
+ "aria-labelledby"?: string | undefined;
744
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
745
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
746
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
747
+ screenReaderFocusable?: boolean;
748
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
749
+ accessibilityIgnoresInvertColors?: boolean | undefined;
750
+ accessibilityViewIsModal?: boolean | undefined;
751
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
752
+ accessibilityLargeContentTitle?: string | undefined;
753
+ "aria-modal"?: boolean | undefined;
754
+ accessibilityElementsHidden?: boolean | undefined;
755
+ accessibilityLanguage?: string | undefined;
756
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
757
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
758
+ accessible?: boolean | undefined;
759
+ accessibilityLabel?: string | undefined;
760
+ accessibilityHint?: string | undefined;
761
+ "aria-label"?: string | undefined;
762
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
763
+ role?: import("react-native").Role | undefined;
764
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
765
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
766
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
767
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
768
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
769
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
770
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
771
+ "aria-busy"?: boolean | undefined;
772
+ "aria-checked"?: (boolean | undefined) | "mixed";
773
+ "aria-disabled"?: boolean | undefined;
774
+ "aria-expanded"?: boolean | undefined;
775
+ "aria-selected"?: boolean | undefined;
776
+ "aria-hidden"?: boolean | undefined;
777
+ }>, "id" | "pointerEvents" | "style" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
778
+ children?: React.ReactNode;
779
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
780
+ collapsable?: boolean | undefined;
781
+ collapsableChildren?: boolean | undefined;
782
+ id?: string;
783
+ testID?: string | undefined;
784
+ nativeID?: string | undefined;
785
+ needsOffscreenAlphaCompositing?: boolean | undefined;
786
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
787
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
788
+ removeClippedSubviews?: boolean | undefined;
789
+ experimental_accessibilityOrder?: Array<string> | undefined;
790
+ }>, never>>, "ref"> & {
791
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
792
+ }, never>>;
793
+ export declare const AccountBox: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
794
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
795
+ onAccessibilityTap?: (() => unknown) | undefined;
796
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
797
+ onMagicTap?: (() => unknown) | undefined;
798
+ onAccessibilityEscape?: (() => unknown) | undefined;
799
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
800
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
801
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
802
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
803
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
804
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
805
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
806
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
807
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
808
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
809
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
810
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
811
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
812
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
813
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
814
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
815
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
816
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
817
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
818
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
819
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
820
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
821
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
822
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
823
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
824
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
825
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
826
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
827
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
828
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
829
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
830
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
831
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
832
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
833
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
834
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
835
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
836
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
837
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
838
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
839
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
840
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
841
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
842
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
843
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
844
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
845
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
846
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
847
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
848
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
849
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
850
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
851
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
852
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
853
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
854
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
855
+ renderToHardwareTextureAndroid?: boolean | undefined;
856
+ hasTVPreferredFocus?: boolean | undefined;
857
+ nextFocusDown?: number | undefined;
858
+ nextFocusForward?: number | undefined;
859
+ nextFocusLeft?: number | undefined;
860
+ nextFocusRight?: number | undefined;
861
+ nextFocusUp?: number | undefined;
862
+ focusable?: boolean | undefined;
863
+ tabIndex?: 0 | -1;
864
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
865
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
866
+ shouldRasterizeIOS?: boolean | undefined;
867
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
868
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
869
+ "aria-labelledby"?: string | undefined;
870
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
871
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
872
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
873
+ screenReaderFocusable?: boolean;
874
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
875
+ accessibilityIgnoresInvertColors?: boolean | undefined;
876
+ accessibilityViewIsModal?: boolean | undefined;
877
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
878
+ accessibilityLargeContentTitle?: string | undefined;
879
+ "aria-modal"?: boolean | undefined;
880
+ accessibilityElementsHidden?: boolean | undefined;
881
+ accessibilityLanguage?: string | undefined;
882
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
883
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
884
+ accessible?: boolean | undefined;
885
+ accessibilityLabel?: string | undefined;
886
+ accessibilityHint?: string | undefined;
887
+ "aria-label"?: string | undefined;
888
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
889
+ role?: import("react-native").Role | undefined;
890
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
891
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
892
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
893
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
894
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
895
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
896
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
897
+ "aria-busy"?: boolean | undefined;
898
+ "aria-checked"?: (boolean | undefined) | "mixed";
899
+ "aria-disabled"?: boolean | undefined;
900
+ "aria-expanded"?: boolean | undefined;
901
+ "aria-selected"?: boolean | undefined;
902
+ "aria-hidden"?: boolean | undefined;
903
+ }>, "id" | "pointerEvents" | "style" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
904
+ children?: React.ReactNode;
905
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
906
+ collapsable?: boolean | undefined;
907
+ collapsableChildren?: boolean | undefined;
908
+ id?: string;
909
+ testID?: string | undefined;
910
+ nativeID?: string | undefined;
911
+ needsOffscreenAlphaCompositing?: boolean | undefined;
912
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
913
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
914
+ removeClippedSubviews?: boolean | undefined;
915
+ experimental_accessibilityOrder?: Array<string> | undefined;
916
+ }>, never>>, "ref"> & {
917
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
918
+ }, never>>;
919
+ export declare const AccountText: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
920
+ onPointerEnter?: (event: import("react-native").PointerEvent) => void;
921
+ onPointerLeave?: (event: import("react-native").PointerEvent) => void;
922
+ onPointerMove?: (event: import("react-native").PointerEvent) => void;
923
+ }>, "id" | "onPress" | "disabled" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "nativeID" | "onAccessibilityAction" | "onLayout" | "onLongPress" | "onPressIn" | "onPressOut" | "pressRetentionOffset" | "testID" | "onMoveShouldSetResponder" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "adjustsFontSizeToFit" | "dynamicTypeRamp" | "suppressHighlighting" | "lineBreakStrategyIOS" | "selectionColor" | "dataDetectorType" | "textBreakStrategy" | "minimumFontScale" | "allowFontScaling" | "android_hyphenationFrequency" | "ellipsizeMode" | "maxFontSizeMultiplier" | "numberOfLines" | "onTextLayout" | "selectable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsIOS, "id" | "onPress" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "nativeID" | "onAccessibilityAction" | "onLayout" | "onLongPress" | "onPressIn" | "onPressOut" | "pressRetentionOffset" | "testID" | "onMoveShouldSetResponder" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | keyof import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid | "allowFontScaling" | "android_hyphenationFrequency" | "ellipsizeMode" | "maxFontSizeMultiplier" | "numberOfLines" | "onTextLayout" | "selectable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid, "id" | "onPress" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "nativeID" | "onAccessibilityAction" | "onLayout" | "onLongPress" | "onPressIn" | "onPressOut" | "pressRetentionOffset" | "testID" | "onMoveShouldSetResponder" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "allowFontScaling" | "android_hyphenationFrequency" | "ellipsizeMode" | "maxFontSizeMultiplier" | "numberOfLines" | "onTextLayout" | "selectable"> & Omit<Readonly<{
924
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
925
+ allowFontScaling?: boolean | undefined;
926
+ android_hyphenationFrequency?: ("normal" | "none" | "full") | undefined;
927
+ children?: React.ReactNode | undefined;
928
+ ellipsizeMode?: ("clip" | "head" | "middle" | "tail") | undefined;
929
+ id?: string;
930
+ maxFontSizeMultiplier?: number | undefined;
931
+ nativeID?: string | undefined;
932
+ numberOfLines?: number | undefined;
933
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
934
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
935
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
936
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
937
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
938
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
939
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
940
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
941
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
942
+ onResponderTerminationRequest?: (() => boolean) | undefined;
943
+ onStartShouldSetResponder?: (() => boolean) | undefined;
944
+ onMoveShouldSetResponder?: (() => boolean) | undefined;
945
+ onTextLayout?: ((event: import("react-native").TextLayoutEvent) => unknown) | undefined;
946
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/Text/TextProps").PressRetentionOffset | undefined;
947
+ role?: import("react-native").Role | undefined;
948
+ selectable?: boolean | undefined;
949
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
950
+ testID?: string | undefined;
951
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<Readonly<Omit<Readonly<{
952
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
953
+ "aria-labelledby"?: string | undefined;
954
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
955
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
956
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
957
+ screenReaderFocusable?: boolean;
958
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
959
+ accessibilityIgnoresInvertColors?: boolean | undefined;
960
+ accessibilityViewIsModal?: boolean | undefined;
961
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
962
+ accessibilityLargeContentTitle?: string | undefined;
963
+ "aria-modal"?: boolean | undefined;
964
+ accessibilityElementsHidden?: boolean | undefined;
965
+ accessibilityLanguage?: string | undefined;
966
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
967
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
968
+ accessible?: boolean | undefined;
969
+ accessibilityLabel?: string | undefined;
970
+ accessibilityHint?: string | undefined;
971
+ "aria-label"?: string | undefined;
972
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
973
+ role?: import("react-native").Role | undefined;
974
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
975
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
976
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
977
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
978
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
979
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
980
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
981
+ "aria-busy"?: boolean | undefined;
982
+ "aria-checked"?: (boolean | undefined) | "mixed";
983
+ "aria-disabled"?: boolean | undefined;
984
+ "aria-expanded"?: boolean | undefined;
985
+ "aria-selected"?: boolean | undefined;
986
+ "aria-hidden"?: boolean | undefined;
987
+ }>, never>>, "ref"> & {
988
+ ref?: React.Ref<import("react-native/types_generated/src/private/webapis/dom/nodes/ReactNativeElement").default>;
989
+ }, never>>;
990
+ export declare const Label: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
991
+ onPointerEnter?: (event: import("react-native").PointerEvent) => void;
992
+ onPointerLeave?: (event: import("react-native").PointerEvent) => void;
993
+ onPointerMove?: (event: import("react-native").PointerEvent) => void;
994
+ }>, "id" | "onPress" | "disabled" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "nativeID" | "onAccessibilityAction" | "onLayout" | "onLongPress" | "onPressIn" | "onPressOut" | "pressRetentionOffset" | "testID" | "onMoveShouldSetResponder" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "adjustsFontSizeToFit" | "dynamicTypeRamp" | "suppressHighlighting" | "lineBreakStrategyIOS" | "selectionColor" | "dataDetectorType" | "textBreakStrategy" | "minimumFontScale" | "allowFontScaling" | "android_hyphenationFrequency" | "ellipsizeMode" | "maxFontSizeMultiplier" | "numberOfLines" | "onTextLayout" | "selectable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsIOS, "id" | "onPress" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "nativeID" | "onAccessibilityAction" | "onLayout" | "onLongPress" | "onPressIn" | "onPressOut" | "pressRetentionOffset" | "testID" | "onMoveShouldSetResponder" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | keyof import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid | "allowFontScaling" | "android_hyphenationFrequency" | "ellipsizeMode" | "maxFontSizeMultiplier" | "numberOfLines" | "onTextLayout" | "selectable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid, "id" | "onPress" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "nativeID" | "onAccessibilityAction" | "onLayout" | "onLongPress" | "onPressIn" | "onPressOut" | "pressRetentionOffset" | "testID" | "onMoveShouldSetResponder" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "allowFontScaling" | "android_hyphenationFrequency" | "ellipsizeMode" | "maxFontSizeMultiplier" | "numberOfLines" | "onTextLayout" | "selectable"> & Omit<Readonly<{
995
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
996
+ allowFontScaling?: boolean | undefined;
997
+ android_hyphenationFrequency?: ("normal" | "none" | "full") | undefined;
998
+ children?: React.ReactNode | undefined;
999
+ ellipsizeMode?: ("clip" | "head" | "middle" | "tail") | undefined;
1000
+ id?: string;
1001
+ maxFontSizeMultiplier?: number | undefined;
1002
+ nativeID?: string | undefined;
1003
+ numberOfLines?: number | undefined;
1004
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
1005
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
1006
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
1007
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
1008
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
1009
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1010
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1011
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1012
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
1013
+ onResponderTerminationRequest?: (() => boolean) | undefined;
1014
+ onStartShouldSetResponder?: (() => boolean) | undefined;
1015
+ onMoveShouldSetResponder?: (() => boolean) | undefined;
1016
+ onTextLayout?: ((event: import("react-native").TextLayoutEvent) => unknown) | undefined;
1017
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/Text/TextProps").PressRetentionOffset | undefined;
1018
+ role?: import("react-native").Role | undefined;
1019
+ selectable?: boolean | undefined;
1020
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
1021
+ testID?: string | undefined;
1022
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<Readonly<Omit<Readonly<{
1023
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
1024
+ "aria-labelledby"?: string | undefined;
1025
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
1026
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
1027
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
1028
+ screenReaderFocusable?: boolean;
1029
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
1030
+ accessibilityIgnoresInvertColors?: boolean | undefined;
1031
+ accessibilityViewIsModal?: boolean | undefined;
1032
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
1033
+ accessibilityLargeContentTitle?: string | undefined;
1034
+ "aria-modal"?: boolean | undefined;
1035
+ accessibilityElementsHidden?: boolean | undefined;
1036
+ accessibilityLanguage?: string | undefined;
1037
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
1038
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
1039
+ accessible?: boolean | undefined;
1040
+ accessibilityLabel?: string | undefined;
1041
+ accessibilityHint?: string | undefined;
1042
+ "aria-label"?: string | undefined;
1043
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
1044
+ role?: import("react-native").Role | undefined;
1045
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
1046
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1047
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
1048
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
1049
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
1050
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
1051
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
1052
+ "aria-busy"?: boolean | undefined;
1053
+ "aria-checked"?: (boolean | undefined) | "mixed";
1054
+ "aria-disabled"?: boolean | undefined;
1055
+ "aria-expanded"?: boolean | undefined;
1056
+ "aria-selected"?: boolean | undefined;
1057
+ "aria-hidden"?: boolean | undefined;
1058
+ }>, never>>, "ref"> & {
1059
+ ref?: React.Ref<import("react-native/types_generated/src/private/webapis/dom/nodes/ReactNativeElement").default>;
1060
+ }, never>>;
1061
+ export declare const InputBox: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
1062
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
1063
+ onAccessibilityTap?: (() => unknown) | undefined;
1064
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
1065
+ onMagicTap?: (() => unknown) | undefined;
1066
+ onAccessibilityEscape?: (() => unknown) | undefined;
1067
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1068
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1069
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1070
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
1071
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1072
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1073
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1074
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1075
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1076
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1077
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1078
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1079
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1080
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1081
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
1082
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
1083
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1084
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
1085
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1086
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
1087
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1088
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
1089
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1090
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
1091
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1092
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
1093
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1094
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
1095
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1096
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
1097
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1098
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
1099
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1100
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
1101
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1102
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1103
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1104
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1105
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1106
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1107
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
1108
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
1109
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
1110
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
1111
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1112
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1113
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1114
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1115
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1116
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1117
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1118
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1119
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1120
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1121
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
1122
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
1123
+ renderToHardwareTextureAndroid?: boolean | undefined;
1124
+ hasTVPreferredFocus?: boolean | undefined;
1125
+ nextFocusDown?: number | undefined;
1126
+ nextFocusForward?: number | undefined;
1127
+ nextFocusLeft?: number | undefined;
1128
+ nextFocusRight?: number | undefined;
1129
+ nextFocusUp?: number | undefined;
1130
+ focusable?: boolean | undefined;
1131
+ tabIndex?: 0 | -1;
1132
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
1133
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1134
+ shouldRasterizeIOS?: boolean | undefined;
1135
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
1136
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
1137
+ "aria-labelledby"?: string | undefined;
1138
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
1139
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
1140
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
1141
+ screenReaderFocusable?: boolean;
1142
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
1143
+ accessibilityIgnoresInvertColors?: boolean | undefined;
1144
+ accessibilityViewIsModal?: boolean | undefined;
1145
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
1146
+ accessibilityLargeContentTitle?: string | undefined;
1147
+ "aria-modal"?: boolean | undefined;
1148
+ accessibilityElementsHidden?: boolean | undefined;
1149
+ accessibilityLanguage?: string | undefined;
1150
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
1151
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
1152
+ accessible?: boolean | undefined;
1153
+ accessibilityLabel?: string | undefined;
1154
+ accessibilityHint?: string | undefined;
1155
+ "aria-label"?: string | undefined;
1156
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
1157
+ role?: import("react-native").Role | undefined;
1158
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
1159
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1160
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
1161
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
1162
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
1163
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
1164
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
1165
+ "aria-busy"?: boolean | undefined;
1166
+ "aria-checked"?: (boolean | undefined) | "mixed";
1167
+ "aria-disabled"?: boolean | undefined;
1168
+ "aria-expanded"?: boolean | undefined;
1169
+ "aria-selected"?: boolean | undefined;
1170
+ "aria-hidden"?: boolean | undefined;
1171
+ }>, "id" | "pointerEvents" | "style" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1172
+ children?: React.ReactNode;
1173
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
1174
+ collapsable?: boolean | undefined;
1175
+ collapsableChildren?: boolean | undefined;
1176
+ id?: string;
1177
+ testID?: string | undefined;
1178
+ nativeID?: string | undefined;
1179
+ needsOffscreenAlphaCompositing?: boolean | undefined;
1180
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
1181
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
1182
+ removeClippedSubviews?: boolean | undefined;
1183
+ experimental_accessibilityOrder?: Array<string> | undefined;
1184
+ }>, never>>, "ref"> & {
1185
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
1186
+ }, never>>;
1187
+ export declare const StyledTextInput: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Omit<Readonly<Omit<Readonly<{
1188
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
1189
+ onAccessibilityTap?: (() => unknown) | undefined;
1190
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
1191
+ onMagicTap?: (() => unknown) | undefined;
1192
+ onAccessibilityEscape?: (() => unknown) | undefined;
1193
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1194
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1195
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1196
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
1197
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1198
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1199
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1200
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1201
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1202
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1203
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1204
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1205
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
1206
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1207
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
1208
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
1209
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1210
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
1211
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1212
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
1213
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1214
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
1215
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1216
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
1217
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
1218
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
1219
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1220
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
1221
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1222
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
1223
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1224
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
1225
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1226
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
1227
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1228
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1229
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1230
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1231
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
1232
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1233
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
1234
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
1235
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
1236
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
1237
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1238
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1239
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1240
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1241
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1242
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1243
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1244
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1245
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
1246
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1247
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
1248
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
1249
+ renderToHardwareTextureAndroid?: boolean | undefined;
1250
+ hasTVPreferredFocus?: boolean | undefined;
1251
+ nextFocusDown?: number | undefined;
1252
+ nextFocusForward?: number | undefined;
1253
+ nextFocusLeft?: number | undefined;
1254
+ nextFocusRight?: number | undefined;
1255
+ nextFocusUp?: number | undefined;
1256
+ focusable?: boolean | undefined;
1257
+ tabIndex?: 0 | -1;
1258
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
1259
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1260
+ shouldRasterizeIOS?: boolean | undefined;
1261
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
1262
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
1263
+ "aria-labelledby"?: string | undefined;
1264
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
1265
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
1266
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
1267
+ screenReaderFocusable?: boolean;
1268
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
1269
+ accessibilityIgnoresInvertColors?: boolean | undefined;
1270
+ accessibilityViewIsModal?: boolean | undefined;
1271
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
1272
+ accessibilityLargeContentTitle?: string | undefined;
1273
+ "aria-modal"?: boolean | undefined;
1274
+ accessibilityElementsHidden?: boolean | undefined;
1275
+ accessibilityLanguage?: string | undefined;
1276
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
1277
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
1278
+ accessible?: boolean | undefined;
1279
+ accessibilityLabel?: string | undefined;
1280
+ accessibilityHint?: string | undefined;
1281
+ "aria-label"?: string | undefined;
1282
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
1283
+ role?: import("react-native").Role | undefined;
1284
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
1285
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
1286
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
1287
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
1288
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
1289
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
1290
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
1291
+ "aria-busy"?: boolean | undefined;
1292
+ "aria-checked"?: (boolean | undefined) | "mixed";
1293
+ "aria-disabled"?: boolean | undefined;
1294
+ "aria-expanded"?: boolean | undefined;
1295
+ "aria-selected"?: boolean | undefined;
1296
+ "aria-hidden"?: boolean | undefined;
1297
+ }>, "id" | "pointerEvents" | "style" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
1298
+ children?: React.ReactNode;
1299
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
1300
+ collapsable?: boolean | undefined;
1301
+ collapsableChildren?: boolean | undefined;
1302
+ id?: string;
1303
+ testID?: string | undefined;
1304
+ nativeID?: string | undefined;
1305
+ needsOffscreenAlphaCompositing?: boolean | undefined;
1306
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
1307
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
1308
+ removeClippedSubviews?: boolean | undefined;
1309
+ experimental_accessibilityOrder?: Array<string> | undefined;
1310
+ }>, never>>, "style" | "experimental_accessibilityOrder">, "onPress" | "style" | "textAlign" | "onBlur" | "onFocus" | "onPressIn" | "onPressOut" | "rejectResponderTermination" | "lineBreakStrategyIOS" | "selectionColor" | "textBreakStrategy" | "allowFontScaling" | "maxFontSizeMultiplier" | "numberOfLines" | "disableKeyboardShortcuts" | "clearButtonMode" | "clearTextOnFocus" | "dataDetectorTypes" | "enablesReturnKeyAutomatically" | "inputAccessoryViewID" | "inputAccessoryViewButtonLabel" | "keyboardAppearance" | "passwordRules" | "scrollEnabled" | "spellCheck" | "textContentType" | "lineBreakModeIOS" | "smartInsertDelete" | "cursorColor" | "selectionHandleColor" | "disableFullscreenUI" | "importantForAutofill" | "inlineImageLeft" | "inlineImagePadding" | "returnKeyLabel" | "rows" | "showSoftInputOnFocus" | "underlineColorAndroid" | "experimental_acceptDragAndDropTypes" | "autoCapitalize" | "autoComplete" | "autoCorrect" | "autoFocus" | "caretHidden" | "contextMenuHidden" | "defaultValue" | "editable" | "forwardedRef" | "enterKeyHint" | "inputMode" | "keyboardType" | "maxLength" | "multiline" | "onChange" | "onChangeText" | "onContentSizeChange" | "onEndEditing" | "onKeyPress" | "onSelectionChange" | "onSubmitEditing" | "onScroll" | "placeholder" | "placeholderTextColor" | "readOnly" | "returnKeyType" | "secureTextEntry" | "selection" | "selectTextOnFocus" | "blurOnSubmit" | "submitBehavior" | "value"> & Omit<Readonly<{
1311
+ disableKeyboardShortcuts?: boolean | undefined;
1312
+ clearButtonMode?: ("never" | "while-editing" | "unless-editing" | "always") | undefined;
1313
+ clearTextOnFocus?: boolean | undefined;
1314
+ dataDetectorTypes?: (import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").DataDetectorTypesType | undefined) | ReadonlyArray<import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").DataDetectorTypesType>;
1315
+ enablesReturnKeyAutomatically?: boolean | undefined;
1316
+ inputAccessoryViewID?: string | undefined;
1317
+ inputAccessoryViewButtonLabel?: string | undefined;
1318
+ keyboardAppearance?: ("default" | "light" | "dark") | undefined;
1319
+ passwordRules?: import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").PasswordRules | undefined;
1320
+ rejectResponderTermination?: boolean | undefined;
1321
+ scrollEnabled?: boolean | undefined;
1322
+ spellCheck?: boolean | undefined;
1323
+ textContentType?: import("react-native").TextContentType | undefined;
1324
+ lineBreakStrategyIOS?: ("none" | "standard" | "hangul-word" | "push-out") | undefined;
1325
+ lineBreakModeIOS?: ("wordWrapping" | "char" | "clip" | "head" | "middle" | "tail") | undefined;
1326
+ smartInsertDelete?: boolean | undefined;
1327
+ }>, "onPress" | "style" | "textAlign" | "onBlur" | "onFocus" | "onPressIn" | "onPressOut" | "selectionColor" | "textBreakStrategy" | "allowFontScaling" | "maxFontSizeMultiplier" | "numberOfLines" | "cursorColor" | "selectionHandleColor" | "disableFullscreenUI" | "importantForAutofill" | "inlineImageLeft" | "inlineImagePadding" | "returnKeyLabel" | "rows" | "showSoftInputOnFocus" | "underlineColorAndroid" | "experimental_acceptDragAndDropTypes" | "autoCapitalize" | "autoComplete" | "autoCorrect" | "autoFocus" | "caretHidden" | "contextMenuHidden" | "defaultValue" | "editable" | "forwardedRef" | "enterKeyHint" | "inputMode" | "keyboardType" | "maxLength" | "multiline" | "onChange" | "onChangeText" | "onContentSizeChange" | "onEndEditing" | "onKeyPress" | "onSelectionChange" | "onSubmitEditing" | "onScroll" | "placeholder" | "placeholderTextColor" | "readOnly" | "returnKeyType" | "secureTextEntry" | "selection" | "selectTextOnFocus" | "blurOnSubmit" | "submitBehavior" | "value"> & Omit<Readonly<{
1328
+ cursorColor?: import("react-native").ColorValue | undefined;
1329
+ selectionHandleColor?: import("react-native").ColorValue | undefined;
1330
+ disableFullscreenUI?: boolean | undefined;
1331
+ importantForAutofill?: ("auto" | "no" | "noExcludeDescendants" | "yes" | "yesExcludeDescendants") | undefined;
1332
+ inlineImageLeft?: string | undefined;
1333
+ inlineImagePadding?: number | undefined;
1334
+ numberOfLines?: number | undefined;
1335
+ returnKeyLabel?: string | undefined;
1336
+ rows?: number | undefined;
1337
+ showSoftInputOnFocus?: boolean | undefined;
1338
+ textBreakStrategy?: ("simple" | "highQuality" | "balanced") | undefined;
1339
+ underlineColorAndroid?: import("react-native").ColorValue | undefined;
1340
+ }>, "onPress" | "style" | "textAlign" | "onBlur" | "onFocus" | "onPressIn" | "onPressOut" | "selectionColor" | "allowFontScaling" | "maxFontSizeMultiplier" | "experimental_acceptDragAndDropTypes" | "autoCapitalize" | "autoComplete" | "autoCorrect" | "autoFocus" | "caretHidden" | "contextMenuHidden" | "defaultValue" | "editable" | "forwardedRef" | "enterKeyHint" | "inputMode" | "keyboardType" | "maxLength" | "multiline" | "onChange" | "onChangeText" | "onContentSizeChange" | "onEndEditing" | "onKeyPress" | "onSelectionChange" | "onSubmitEditing" | "onScroll" | "placeholder" | "placeholderTextColor" | "readOnly" | "returnKeyType" | "secureTextEntry" | "selection" | "selectTextOnFocus" | "blurOnSubmit" | "submitBehavior" | "value"> & Omit<Readonly<{
1341
+ experimental_acceptDragAndDropTypes?: ReadonlyArray<string> | undefined;
1342
+ autoCapitalize?: import("react-native").AutoCapitalize | undefined;
1343
+ autoComplete?: ("additional-name" | "address-line1" | "address-line2" | "birthdate-day" | "birthdate-full" | "birthdate-month" | "birthdate-year" | "cc-csc" | "cc-exp" | "cc-exp-day" | "cc-exp-month" | "cc-exp-year" | "cc-number" | "cc-name" | "cc-given-name" | "cc-middle-name" | "cc-family-name" | "cc-type" | "country" | "current-password" | "email" | "family-name" | "gender" | "given-name" | "honorific-prefix" | "honorific-suffix" | "name" | "name-family" | "name-given" | "name-middle" | "name-middle-initial" | "name-prefix" | "name-suffix" | "new-password" | "nickname" | "one-time-code" | "organization" | "organization-title" | "password" | "password-new" | "postal-address" | "postal-address-country" | "postal-address-extended" | "postal-address-extended-postal-code" | "postal-address-locality" | "postal-address-region" | "postal-code" | "street-address" | "sms-otp" | "tel" | "tel-country-code" | "tel-national" | "tel-device" | "url" | "username" | "username-new" | "off") | undefined;
1344
+ autoCorrect?: boolean | undefined;
1345
+ autoFocus?: boolean | undefined;
1346
+ allowFontScaling?: boolean | undefined;
1347
+ caretHidden?: boolean | undefined;
1348
+ contextMenuHidden?: boolean | undefined;
1349
+ defaultValue?: string | undefined;
1350
+ editable?: boolean | undefined;
1351
+ forwardedRef?: React.Ref<import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").TextInputInstance> | undefined;
1352
+ enterKeyHint?: import("react-native").EnterKeyHintTypeOptions | undefined;
1353
+ inputMode?: import("react-native").InputModeOptions | undefined;
1354
+ keyboardType?: import("react-native").KeyboardTypeOptions | undefined;
1355
+ maxFontSizeMultiplier?: number | undefined;
1356
+ maxLength?: number | undefined;
1357
+ multiline?: boolean | undefined;
1358
+ onBlur?: ((e: import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").TextInputBlurEvent) => unknown) | undefined;
1359
+ onChange?: ((e: import("react-native").TextInputChangeEvent) => unknown) | undefined;
1360
+ onChangeText?: ((text: string) => unknown) | undefined;
1361
+ onContentSizeChange?: ((e: import("react-native").TextInputContentSizeChangeEvent) => unknown) | undefined;
1362
+ onEndEditing?: ((e: import("react-native").TextInputEndEditingEvent) => unknown) | undefined;
1363
+ onFocus?: ((e: import("react-native").TextInputFocusEvent) => unknown) | undefined;
1364
+ onKeyPress?: ((e: import("react-native").TextInputKeyPressEvent) => unknown) | undefined;
1365
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
1366
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
1367
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
1368
+ onSelectionChange?: ((e: import("react-native").TextInputSelectionChangeEvent) => unknown) | undefined;
1369
+ onSubmitEditing?: ((e: import("react-native").TextInputSubmitEditingEvent) => unknown) | undefined;
1370
+ onScroll?: ((e: import("react-native").ScrollEvent) => unknown) | undefined;
1371
+ placeholder?: string | undefined;
1372
+ placeholderTextColor?: import("react-native").ColorValue | undefined;
1373
+ readOnly?: boolean | undefined;
1374
+ returnKeyType?: import("react-native").ReturnKeyTypeOptions | undefined;
1375
+ secureTextEntry?: boolean | undefined;
1376
+ selection?: Readonly<{
1377
+ start: number;
1378
+ end?: number | undefined;
1379
+ }> | undefined;
1380
+ selectionColor?: import("react-native").ColorValue | undefined;
1381
+ selectTextOnFocus?: boolean | undefined;
1382
+ blurOnSubmit?: boolean | undefined;
1383
+ submitBehavior?: import("react-native").SubmitBehavior | undefined;
1384
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
1385
+ value?: string | undefined;
1386
+ textAlign?: ("left" | "center" | "right") | undefined;
1387
+ }>, never>>, "ref"> & {
1388
+ ref?: React.Ref<import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").TextInputInstance>;
1389
+ }, never>>;
1390
+ //# sourceMappingURL=styles.d.ts.map