react-native-fpay 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (167) hide show
  1. package/Fpay.podspec +20 -0
  2. package/LICENSE +20 -0
  3. package/README.md +37 -0
  4. package/android/build.gradle +67 -0
  5. package/android/src/main/AndroidManifest.xml +2 -0
  6. package/android/src/main/java/com/fpay/FpayModule.kt +15 -0
  7. package/android/src/main/java/com/fpay/FpayPackage.kt +31 -0
  8. package/ios/Fpay.h +5 -0
  9. package/ios/Fpay.mm +21 -0
  10. package/lib/module/FountainPayProvider.js +18 -0
  11. package/lib/module/FountainPayProvider.js.map +1 -0
  12. package/lib/module/core/api/client.js +47 -0
  13. package/lib/module/core/api/client.js.map +1 -0
  14. package/lib/module/core/api/index.js +35 -0
  15. package/lib/module/core/api/index.js.map +1 -0
  16. package/lib/module/core/types/index.js +4 -0
  17. package/lib/module/core/types/index.js.map +1 -0
  18. package/lib/module/engine/BLEReceiverService.js +190 -0
  19. package/lib/module/engine/BLEReceiverService.js.map +1 -0
  20. package/lib/module/engine/BLESenderService.js +259 -0
  21. package/lib/module/engine/BLESenderService.js.map +1 -0
  22. package/lib/module/engine/FPEngine.js +340 -0
  23. package/lib/module/engine/FPEngine.js.map +1 -0
  24. package/lib/module/engine/NearbyUsersService.js +87 -0
  25. package/lib/module/engine/NearbyUsersService.js.map +1 -0
  26. package/lib/module/index.js +16 -0
  27. package/lib/module/index.js.map +1 -0
  28. package/lib/module/package.json +1 -0
  29. package/lib/module/ui/components/FPButton.js +71 -0
  30. package/lib/module/ui/components/FPButton.js.map +1 -0
  31. package/lib/module/ui/components/LoadingAnimation/InLoading.js +74 -0
  32. package/lib/module/ui/components/LoadingAnimation/InLoading.js.map +1 -0
  33. package/lib/module/ui/components/LoadingAnimation/index.js +82 -0
  34. package/lib/module/ui/components/LoadingAnimation/index.js.map +1 -0
  35. package/lib/module/ui/components/OtpInput/OTPInputView.js +290 -0
  36. package/lib/module/ui/components/OtpInput/OTPInputView.js.map +1 -0
  37. package/lib/module/ui/components/OtpInput/Styles.js +20 -0
  38. package/lib/module/ui/components/OtpInput/Styles.js.map +1 -0
  39. package/lib/module/ui/components/OtpInput/helpers/codeToArray.js +7 -0
  40. package/lib/module/ui/components/OtpInput/helpers/codeToArray.js.map +1 -0
  41. package/lib/module/ui/components/OtpInput/helpers/device.js +9 -0
  42. package/lib/module/ui/components/OtpInput/helpers/device.js.map +1 -0
  43. package/lib/module/ui/components/OtpInput/helpers/styles.js +17 -0
  44. package/lib/module/ui/components/OtpInput/helpers/styles.js.map +1 -0
  45. package/lib/module/ui/components/OtpInput/helpers/types.js +4 -0
  46. package/lib/module/ui/components/OtpInput/helpers/types.js.map +1 -0
  47. package/lib/module/ui/components/OtpInput/index.js +45 -0
  48. package/lib/module/ui/components/OtpInput/index.js.map +1 -0
  49. package/lib/module/ui/components/PulseAnimation.js +61 -0
  50. package/lib/module/ui/components/PulseAnimation.js.map +1 -0
  51. package/lib/module/ui/modals/FPPaymentRequestModal.js +253 -0
  52. package/lib/module/ui/modals/FPPaymentRequestModal.js.map +1 -0
  53. package/lib/module/ui/modals/FPShell.js +180 -0
  54. package/lib/module/ui/modals/FPShell.js.map +1 -0
  55. package/lib/module/ui/screens/ReceiveScreen.js +291 -0
  56. package/lib/module/ui/screens/ReceiveScreen.js.map +1 -0
  57. package/lib/module/ui/screens/SendScreen.js +216 -0
  58. package/lib/module/ui/screens/SendScreen.js.map +1 -0
  59. package/lib/module/ui/screens/sub/BluetoothSubScreen.js +403 -0
  60. package/lib/module/ui/screens/sub/BluetoothSubScreen.js.map +1 -0
  61. package/lib/module/ui/screens/sub/NFCSubScreen.js +169 -0
  62. package/lib/module/ui/screens/sub/NFCSubScreen.js.map +1 -0
  63. package/lib/module/ui/screens/sub/NQRSubScreen.js +136 -0
  64. package/lib/module/ui/screens/sub/NQRSubScreen.js.map +1 -0
  65. package/lib/module/ui/screens/sub/ProximitySubScreen.js +501 -0
  66. package/lib/module/ui/screens/sub/ProximitySubScreen.js.map +1 -0
  67. package/lib/module/ui/screens/sub/TransferSubScreen.js +361 -0
  68. package/lib/module/ui/screens/sub/TransferSubScreen.js.map +1 -0
  69. package/lib/module/ui/theme/index.js +64 -0
  70. package/lib/module/ui/theme/index.js.map +1 -0
  71. package/lib/module/useFountainPay.js +82 -0
  72. package/lib/module/useFountainPay.js.map +1 -0
  73. package/lib/typescript/package.json +1 -0
  74. package/lib/typescript/src/FountainPayProvider.d.ts +7 -0
  75. package/lib/typescript/src/FountainPayProvider.d.ts.map +1 -0
  76. package/lib/typescript/src/core/api/client.d.ts +7 -0
  77. package/lib/typescript/src/core/api/client.d.ts.map +1 -0
  78. package/lib/typescript/src/core/api/index.d.ts +67 -0
  79. package/lib/typescript/src/core/api/index.d.ts.map +1 -0
  80. package/lib/typescript/src/core/types/index.d.ts +130 -0
  81. package/lib/typescript/src/core/types/index.d.ts.map +1 -0
  82. package/lib/typescript/src/engine/BLEReceiverService.d.ts +43 -0
  83. package/lib/typescript/src/engine/BLEReceiverService.d.ts.map +1 -0
  84. package/lib/typescript/src/engine/BLESenderService.d.ts +39 -0
  85. package/lib/typescript/src/engine/BLESenderService.d.ts.map +1 -0
  86. package/lib/typescript/src/engine/FPEngine.d.ts +24 -0
  87. package/lib/typescript/src/engine/FPEngine.d.ts.map +1 -0
  88. package/lib/typescript/src/engine/NearbyUsersService.d.ts +19 -0
  89. package/lib/typescript/src/engine/NearbyUsersService.d.ts.map +1 -0
  90. package/lib/typescript/src/index.d.ts +4 -0
  91. package/lib/typescript/src/index.d.ts.map +1 -0
  92. package/lib/typescript/src/ui/components/FPButton.d.ts +12 -0
  93. package/lib/typescript/src/ui/components/FPButton.d.ts.map +1 -0
  94. package/lib/typescript/src/ui/components/LoadingAnimation/InLoading.d.ts +7 -0
  95. package/lib/typescript/src/ui/components/LoadingAnimation/InLoading.d.ts.map +1 -0
  96. package/lib/typescript/src/ui/components/LoadingAnimation/index.d.ts +6 -0
  97. package/lib/typescript/src/ui/components/LoadingAnimation/index.d.ts.map +1 -0
  98. package/lib/typescript/src/ui/components/OtpInput/OTPInputView.d.ts +29 -0
  99. package/lib/typescript/src/ui/components/OtpInput/OTPInputView.d.ts.map +1 -0
  100. package/lib/typescript/src/ui/components/OtpInput/Styles.d.ts +330 -0
  101. package/lib/typescript/src/ui/components/OtpInput/Styles.d.ts.map +1 -0
  102. package/lib/typescript/src/ui/components/OtpInput/helpers/codeToArray.d.ts +6 -0
  103. package/lib/typescript/src/ui/components/OtpInput/helpers/codeToArray.d.ts.map +1 -0
  104. package/lib/typescript/src/ui/components/OtpInput/helpers/device.d.ts +6 -0
  105. package/lib/typescript/src/ui/components/OtpInput/helpers/device.d.ts.map +1 -0
  106. package/lib/typescript/src/ui/components/OtpInput/helpers/styles.d.ts +6 -0
  107. package/lib/typescript/src/ui/components/OtpInput/helpers/styles.d.ts.map +1 -0
  108. package/lib/typescript/src/ui/components/OtpInput/helpers/types.d.ts +84 -0
  109. package/lib/typescript/src/ui/components/OtpInput/helpers/types.d.ts.map +1 -0
  110. package/lib/typescript/src/ui/components/OtpInput/index.d.ts +9 -0
  111. package/lib/typescript/src/ui/components/OtpInput/index.d.ts.map +1 -0
  112. package/lib/typescript/src/ui/components/PulseAnimation.d.ts +2 -0
  113. package/lib/typescript/src/ui/components/PulseAnimation.d.ts.map +1 -0
  114. package/lib/typescript/src/ui/modals/FPPaymentRequestModal.d.ts +2 -0
  115. package/lib/typescript/src/ui/modals/FPPaymentRequestModal.d.ts.map +1 -0
  116. package/lib/typescript/src/ui/modals/FPShell.d.ts +2 -0
  117. package/lib/typescript/src/ui/modals/FPShell.d.ts.map +1 -0
  118. package/lib/typescript/src/ui/screens/ReceiveScreen.d.ts +10 -0
  119. package/lib/typescript/src/ui/screens/ReceiveScreen.d.ts.map +1 -0
  120. package/lib/typescript/src/ui/screens/SendScreen.d.ts +9 -0
  121. package/lib/typescript/src/ui/screens/SendScreen.d.ts.map +1 -0
  122. package/lib/typescript/src/ui/screens/sub/BluetoothSubScreen.d.ts +552 -0
  123. package/lib/typescript/src/ui/screens/sub/BluetoothSubScreen.d.ts.map +1 -0
  124. package/lib/typescript/src/ui/screens/sub/NFCSubScreen.d.ts +19 -0
  125. package/lib/typescript/src/ui/screens/sub/NFCSubScreen.d.ts.map +1 -0
  126. package/lib/typescript/src/ui/screens/sub/NQRSubScreen.d.ts +13 -0
  127. package/lib/typescript/src/ui/screens/sub/NQRSubScreen.d.ts.map +1 -0
  128. package/lib/typescript/src/ui/screens/sub/ProximitySubScreen.d.ts +552 -0
  129. package/lib/typescript/src/ui/screens/sub/ProximitySubScreen.d.ts.map +1 -0
  130. package/lib/typescript/src/ui/screens/sub/TransferSubScreen.d.ts +12 -0
  131. package/lib/typescript/src/ui/screens/sub/TransferSubScreen.d.ts.map +1 -0
  132. package/lib/typescript/src/ui/theme/index.d.ts +62 -0
  133. package/lib/typescript/src/ui/theme/index.d.ts.map +1 -0
  134. package/lib/typescript/src/useFountainPay.d.ts +3 -0
  135. package/lib/typescript/src/useFountainPay.d.ts.map +1 -0
  136. package/package.json +217 -0
  137. package/src/FountainPayProvider.tsx +21 -0
  138. package/src/core/api/client.ts +47 -0
  139. package/src/core/api/index.ts +61 -0
  140. package/src/core/types/index.ts +144 -0
  141. package/src/engine/BLEReceiverService.ts +244 -0
  142. package/src/engine/BLESenderService.ts +314 -0
  143. package/src/engine/FPEngine.ts +370 -0
  144. package/src/engine/NearbyUsersService.ts +106 -0
  145. package/src/index.ts +30 -0
  146. package/src/ui/components/FPButton.tsx +42 -0
  147. package/src/ui/components/LoadingAnimation/InLoading.tsx +88 -0
  148. package/src/ui/components/LoadingAnimation/index.tsx +93 -0
  149. package/src/ui/components/OtpInput/OTPInputView.tsx +243 -0
  150. package/src/ui/components/OtpInput/Styles.ts +19 -0
  151. package/src/ui/components/OtpInput/helpers/codeToArray.ts +3 -0
  152. package/src/ui/components/OtpInput/helpers/device.ts +6 -0
  153. package/src/ui/components/OtpInput/helpers/styles.ts +17 -0
  154. package/src/ui/components/OtpInput/helpers/types.ts +88 -0
  155. package/src/ui/components/OtpInput/index.tsx +51 -0
  156. package/src/ui/components/PulseAnimation.tsx +78 -0
  157. package/src/ui/modals/FPPaymentRequestModal.tsx +158 -0
  158. package/src/ui/modals/FPShell.tsx +107 -0
  159. package/src/ui/screens/ReceiveScreen.tsx +119 -0
  160. package/src/ui/screens/SendScreen.tsx +86 -0
  161. package/src/ui/screens/sub/BluetoothSubScreen.tsx +433 -0
  162. package/src/ui/screens/sub/NFCSubScreen.tsx +83 -0
  163. package/src/ui/screens/sub/NQRSubScreen.tsx +61 -0
  164. package/src/ui/screens/sub/ProximitySubScreen.tsx +390 -0
  165. package/src/ui/screens/sub/TransferSubScreen.tsx +146 -0
  166. package/src/ui/theme/index.ts +24 -0
  167. package/src/useFountainPay.ts +95 -0
@@ -0,0 +1,552 @@
1
+ import React from 'react';
2
+ import type { FPCurrency, FPError, FPTransaction } from '../../../core/types';
3
+ export declare const DeviceCard: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
4
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
5
+ onAccessibilityTap?: (() => unknown) | undefined;
6
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
7
+ onMagicTap?: (() => unknown) | undefined;
8
+ onAccessibilityEscape?: (() => unknown) | undefined;
9
+ }>, "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<{
10
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
11
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
12
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
13
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
14
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
15
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
16
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
17
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
18
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
19
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
20
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
21
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
22
+ }>, "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<{
23
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
24
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
25
+ }>, "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<{
26
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
27
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
28
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
29
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
30
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
31
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
32
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
33
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
34
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
35
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
36
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
37
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
38
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
39
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
40
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
41
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
42
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
43
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
44
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
45
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
46
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
47
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
48
+ }>, "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<{
49
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
50
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
51
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
52
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
53
+ }>, "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<{
54
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
55
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
56
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
57
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
58
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
59
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
60
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
61
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
62
+ }>, "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<{
63
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
64
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
65
+ renderToHardwareTextureAndroid?: boolean | undefined;
66
+ hasTVPreferredFocus?: boolean | undefined;
67
+ nextFocusDown?: number | undefined;
68
+ nextFocusForward?: number | undefined;
69
+ nextFocusLeft?: number | undefined;
70
+ nextFocusRight?: number | undefined;
71
+ nextFocusUp?: number | undefined;
72
+ focusable?: boolean | undefined;
73
+ tabIndex?: 0 | -1;
74
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | 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" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
76
+ shouldRasterizeIOS?: boolean | undefined;
77
+ }>, "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<{
78
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
79
+ "aria-labelledby"?: string | undefined;
80
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
81
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
82
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
83
+ screenReaderFocusable?: boolean;
84
+ }>, "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<{
85
+ accessibilityIgnoresInvertColors?: boolean | undefined;
86
+ accessibilityViewIsModal?: boolean | undefined;
87
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
88
+ accessibilityLargeContentTitle?: string | undefined;
89
+ "aria-modal"?: boolean | undefined;
90
+ accessibilityElementsHidden?: boolean | undefined;
91
+ accessibilityLanguage?: string | undefined;
92
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
93
+ }>, "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"> & {
94
+ accessible?: boolean | undefined;
95
+ accessibilityLabel?: string | undefined;
96
+ accessibilityHint?: string | undefined;
97
+ "aria-label"?: string | undefined;
98
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
99
+ role?: import("react-native").Role | undefined;
100
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
101
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
102
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
103
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
104
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
105
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
106
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
107
+ "aria-busy"?: boolean | undefined;
108
+ "aria-checked"?: (boolean | undefined) | "mixed";
109
+ "aria-disabled"?: boolean | undefined;
110
+ "aria-expanded"?: boolean | undefined;
111
+ "aria-selected"?: boolean | undefined;
112
+ "aria-hidden"?: boolean | undefined;
113
+ }>, "id" | "pointerEvents" | "style" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
114
+ children?: React.ReactNode;
115
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
116
+ collapsable?: boolean | undefined;
117
+ collapsableChildren?: boolean | undefined;
118
+ id?: string;
119
+ testID?: string | undefined;
120
+ nativeID?: string | undefined;
121
+ needsOffscreenAlphaCompositing?: boolean | undefined;
122
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
123
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
124
+ removeClippedSubviews?: boolean | undefined;
125
+ experimental_accessibilityOrder?: Array<string> | undefined;
126
+ }>, never>>, "ref"> & {
127
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
128
+ }, never>>;
129
+ export declare const DeviceInfo: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
130
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
131
+ onAccessibilityTap?: (() => unknown) | undefined;
132
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
133
+ onMagicTap?: (() => unknown) | undefined;
134
+ onAccessibilityEscape?: (() => unknown) | undefined;
135
+ }>, "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<{
136
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
137
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
138
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
139
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
140
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
141
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
142
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
143
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
144
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
145
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
146
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
147
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
148
+ }>, "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<{
149
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
150
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
151
+ }>, "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<{
152
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
153
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
154
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
155
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
156
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
157
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
158
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
159
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
160
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
161
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
162
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
163
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
164
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
165
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
166
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
167
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
168
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
169
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
170
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
171
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
172
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
173
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
174
+ }>, "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<{
175
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
176
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
177
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
178
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
179
+ }>, "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<{
180
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
181
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
182
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
183
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
184
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
185
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
186
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
187
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
188
+ }>, "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<{
189
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
190
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
191
+ renderToHardwareTextureAndroid?: boolean | undefined;
192
+ hasTVPreferredFocus?: boolean | undefined;
193
+ nextFocusDown?: number | undefined;
194
+ nextFocusForward?: number | undefined;
195
+ nextFocusLeft?: number | undefined;
196
+ nextFocusRight?: number | undefined;
197
+ nextFocusUp?: number | undefined;
198
+ focusable?: boolean | undefined;
199
+ tabIndex?: 0 | -1;
200
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
201
+ }>, "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<{
202
+ shouldRasterizeIOS?: boolean | undefined;
203
+ }>, "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<{
204
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
205
+ "aria-labelledby"?: string | undefined;
206
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
207
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
208
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
209
+ screenReaderFocusable?: boolean;
210
+ }>, "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<{
211
+ accessibilityIgnoresInvertColors?: boolean | undefined;
212
+ accessibilityViewIsModal?: boolean | undefined;
213
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
214
+ accessibilityLargeContentTitle?: string | undefined;
215
+ "aria-modal"?: boolean | undefined;
216
+ accessibilityElementsHidden?: boolean | undefined;
217
+ accessibilityLanguage?: string | undefined;
218
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
219
+ }>, "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"> & {
220
+ accessible?: boolean | undefined;
221
+ accessibilityLabel?: string | undefined;
222
+ accessibilityHint?: string | undefined;
223
+ "aria-label"?: string | undefined;
224
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
225
+ role?: import("react-native").Role | undefined;
226
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
227
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
228
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
229
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
230
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
231
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
232
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
233
+ "aria-busy"?: boolean | undefined;
234
+ "aria-checked"?: (boolean | undefined) | "mixed";
235
+ "aria-disabled"?: boolean | undefined;
236
+ "aria-expanded"?: boolean | undefined;
237
+ "aria-selected"?: boolean | undefined;
238
+ "aria-hidden"?: boolean | undefined;
239
+ }>, "id" | "pointerEvents" | "style" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
240
+ children?: React.ReactNode;
241
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
242
+ collapsable?: boolean | undefined;
243
+ collapsableChildren?: boolean | undefined;
244
+ id?: string;
245
+ testID?: string | undefined;
246
+ nativeID?: string | undefined;
247
+ needsOffscreenAlphaCompositing?: boolean | undefined;
248
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
249
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
250
+ removeClippedSubviews?: boolean | undefined;
251
+ experimental_accessibilityOrder?: Array<string> | undefined;
252
+ }>, never>>, "ref"> & {
253
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
254
+ }, never>>;
255
+ export declare const DeviceName: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
256
+ onPointerEnter?: (event: import("react-native").PointerEvent) => void;
257
+ onPointerLeave?: (event: import("react-native").PointerEvent) => void;
258
+ onPointerMove?: (event: import("react-native").PointerEvent) => void;
259
+ }>, "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<{
260
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
261
+ allowFontScaling?: boolean | undefined;
262
+ android_hyphenationFrequency?: ("normal" | "none" | "full") | undefined;
263
+ children?: React.ReactNode | undefined;
264
+ ellipsizeMode?: ("clip" | "head" | "middle" | "tail") | undefined;
265
+ id?: string;
266
+ maxFontSizeMultiplier?: number | undefined;
267
+ nativeID?: string | undefined;
268
+ numberOfLines?: number | undefined;
269
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
270
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
271
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
272
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
273
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
274
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
275
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
276
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
277
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
278
+ onResponderTerminationRequest?: (() => boolean) | undefined;
279
+ onStartShouldSetResponder?: (() => boolean) | undefined;
280
+ onMoveShouldSetResponder?: (() => boolean) | undefined;
281
+ onTextLayout?: ((event: import("react-native").TextLayoutEvent) => unknown) | undefined;
282
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/Text/TextProps").PressRetentionOffset | undefined;
283
+ role?: import("react-native").Role | undefined;
284
+ selectable?: boolean | undefined;
285
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
286
+ testID?: string | undefined;
287
+ }>, "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<{
288
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
289
+ "aria-labelledby"?: string | undefined;
290
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
291
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
292
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
293
+ screenReaderFocusable?: boolean;
294
+ }>, "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<{
295
+ accessibilityIgnoresInvertColors?: boolean | undefined;
296
+ accessibilityViewIsModal?: boolean | undefined;
297
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
298
+ accessibilityLargeContentTitle?: string | undefined;
299
+ "aria-modal"?: boolean | undefined;
300
+ accessibilityElementsHidden?: boolean | undefined;
301
+ accessibilityLanguage?: string | undefined;
302
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
303
+ }>, "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"> & {
304
+ accessible?: boolean | undefined;
305
+ accessibilityLabel?: string | undefined;
306
+ accessibilityHint?: string | undefined;
307
+ "aria-label"?: string | undefined;
308
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
309
+ role?: import("react-native").Role | undefined;
310
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
311
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
312
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
313
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
314
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
315
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
316
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
317
+ "aria-busy"?: boolean | undefined;
318
+ "aria-checked"?: (boolean | undefined) | "mixed";
319
+ "aria-disabled"?: boolean | undefined;
320
+ "aria-expanded"?: boolean | undefined;
321
+ "aria-selected"?: boolean | undefined;
322
+ "aria-hidden"?: boolean | undefined;
323
+ }>, never>>, "ref"> & {
324
+ ref?: React.Ref<import("react-native/types_generated/src/private/webapis/dom/nodes/ReactNativeElement").default>;
325
+ }, never>>;
326
+ export declare const DeviceSignal: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
327
+ onPointerEnter?: (event: import("react-native").PointerEvent) => void;
328
+ onPointerLeave?: (event: import("react-native").PointerEvent) => void;
329
+ onPointerMove?: (event: import("react-native").PointerEvent) => void;
330
+ }>, "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<{
331
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
332
+ allowFontScaling?: boolean | undefined;
333
+ android_hyphenationFrequency?: ("normal" | "none" | "full") | undefined;
334
+ children?: React.ReactNode | undefined;
335
+ ellipsizeMode?: ("clip" | "head" | "middle" | "tail") | undefined;
336
+ id?: string;
337
+ maxFontSizeMultiplier?: number | undefined;
338
+ nativeID?: string | undefined;
339
+ numberOfLines?: number | undefined;
340
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
341
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
342
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
343
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
344
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
345
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
346
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
347
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
348
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
349
+ onResponderTerminationRequest?: (() => boolean) | undefined;
350
+ onStartShouldSetResponder?: (() => boolean) | undefined;
351
+ onMoveShouldSetResponder?: (() => boolean) | undefined;
352
+ onTextLayout?: ((event: import("react-native").TextLayoutEvent) => unknown) | undefined;
353
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/Text/TextProps").PressRetentionOffset | undefined;
354
+ role?: import("react-native").Role | undefined;
355
+ selectable?: boolean | undefined;
356
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
357
+ testID?: string | undefined;
358
+ }>, "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<{
359
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
360
+ "aria-labelledby"?: string | undefined;
361
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
362
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
363
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
364
+ screenReaderFocusable?: boolean;
365
+ }>, "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<{
366
+ accessibilityIgnoresInvertColors?: boolean | undefined;
367
+ accessibilityViewIsModal?: boolean | undefined;
368
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
369
+ accessibilityLargeContentTitle?: string | undefined;
370
+ "aria-modal"?: boolean | undefined;
371
+ accessibilityElementsHidden?: boolean | undefined;
372
+ accessibilityLanguage?: string | undefined;
373
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
374
+ }>, "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"> & {
375
+ accessible?: boolean | undefined;
376
+ accessibilityLabel?: string | undefined;
377
+ accessibilityHint?: string | undefined;
378
+ "aria-label"?: string | undefined;
379
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
380
+ role?: import("react-native").Role | undefined;
381
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
382
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
383
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
384
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
385
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
386
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
387
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
388
+ "aria-busy"?: boolean | undefined;
389
+ "aria-checked"?: (boolean | undefined) | "mixed";
390
+ "aria-disabled"?: boolean | undefined;
391
+ "aria-expanded"?: boolean | undefined;
392
+ "aria-selected"?: boolean | undefined;
393
+ "aria-hidden"?: boolean | undefined;
394
+ }>, never>>, "ref"> & {
395
+ ref?: React.Ref<import("react-native/types_generated/src/private/webapis/dom/nodes/ReactNativeElement").default>;
396
+ }, never>>;
397
+ export declare const PayButton: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
398
+ children?: React.ReactNode | undefined;
399
+ delayLongPress?: number | undefined;
400
+ delayPressIn?: number | undefined;
401
+ delayPressOut?: number | undefined;
402
+ disabled?: boolean | undefined;
403
+ focusable?: boolean | undefined;
404
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
405
+ id?: string;
406
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
407
+ nativeID?: string | undefined;
408
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
409
+ onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
410
+ onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
411
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
412
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
413
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
414
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
415
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
416
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
417
+ rejectResponderTermination?: boolean | undefined;
418
+ testID?: string | undefined;
419
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
420
+ } & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
421
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
422
+ "aria-labelledby"?: string | undefined;
423
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
424
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
425
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
426
+ screenReaderFocusable?: boolean;
427
+ }>, "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<{
428
+ accessibilityIgnoresInvertColors?: boolean | undefined;
429
+ accessibilityViewIsModal?: boolean | undefined;
430
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
431
+ accessibilityLargeContentTitle?: string | undefined;
432
+ "aria-modal"?: boolean | undefined;
433
+ accessibilityElementsHidden?: boolean | undefined;
434
+ accessibilityLanguage?: string | undefined;
435
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
436
+ }>, "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"> & {
437
+ accessible?: boolean | undefined;
438
+ accessibilityLabel?: string | undefined;
439
+ accessibilityHint?: string | undefined;
440
+ "aria-label"?: string | undefined;
441
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
442
+ role?: import("react-native").Role | undefined;
443
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
444
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
445
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
446
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
447
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
448
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
449
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
450
+ "aria-busy"?: boolean | undefined;
451
+ "aria-checked"?: (boolean | undefined) | "mixed";
452
+ "aria-disabled"?: boolean | undefined;
453
+ "aria-expanded"?: boolean | undefined;
454
+ "aria-selected"?: boolean | undefined;
455
+ "aria-hidden"?: boolean | undefined;
456
+ }>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
457
+ hasTVPreferredFocus?: boolean | undefined;
458
+ nextFocusDown?: number | undefined;
459
+ nextFocusForward?: number | undefined;
460
+ nextFocusLeft?: number | undefined;
461
+ nextFocusRight?: number | undefined;
462
+ nextFocusUp?: number | undefined;
463
+ }>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
464
+ activeOpacity?: number | undefined;
465
+ style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
466
+ hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
467
+ }>, never>>, "ref"> & {
468
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>>;
469
+ }, never>>;
470
+ export declare const PayButtonText: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
471
+ onPointerEnter?: (event: import("react-native").PointerEvent) => void;
472
+ onPointerLeave?: (event: import("react-native").PointerEvent) => void;
473
+ onPointerMove?: (event: import("react-native").PointerEvent) => void;
474
+ }>, "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<{
475
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
476
+ allowFontScaling?: boolean | undefined;
477
+ android_hyphenationFrequency?: ("normal" | "none" | "full") | undefined;
478
+ children?: React.ReactNode | undefined;
479
+ ellipsizeMode?: ("clip" | "head" | "middle" | "tail") | undefined;
480
+ id?: string;
481
+ maxFontSizeMultiplier?: number | undefined;
482
+ nativeID?: string | undefined;
483
+ numberOfLines?: number | undefined;
484
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
485
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
486
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
487
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
488
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
489
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
490
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
491
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
492
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
493
+ onResponderTerminationRequest?: (() => boolean) | undefined;
494
+ onStartShouldSetResponder?: (() => boolean) | undefined;
495
+ onMoveShouldSetResponder?: (() => boolean) | undefined;
496
+ onTextLayout?: ((event: import("react-native").TextLayoutEvent) => unknown) | undefined;
497
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/Text/TextProps").PressRetentionOffset | undefined;
498
+ role?: import("react-native").Role | undefined;
499
+ selectable?: boolean | undefined;
500
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
501
+ testID?: string | undefined;
502
+ }>, "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<{
503
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
504
+ "aria-labelledby"?: string | undefined;
505
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
506
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
507
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
508
+ screenReaderFocusable?: boolean;
509
+ }>, "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<{
510
+ accessibilityIgnoresInvertColors?: boolean | undefined;
511
+ accessibilityViewIsModal?: boolean | undefined;
512
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
513
+ accessibilityLargeContentTitle?: string | undefined;
514
+ "aria-modal"?: boolean | undefined;
515
+ accessibilityElementsHidden?: boolean | undefined;
516
+ accessibilityLanguage?: string | undefined;
517
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
518
+ }>, "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"> & {
519
+ accessible?: boolean | undefined;
520
+ accessibilityLabel?: string | undefined;
521
+ accessibilityHint?: string | undefined;
522
+ "aria-label"?: string | undefined;
523
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
524
+ role?: import("react-native").Role | undefined;
525
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
526
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
527
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
528
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
529
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
530
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
531
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
532
+ "aria-busy"?: boolean | undefined;
533
+ "aria-checked"?: (boolean | undefined) | "mixed";
534
+ "aria-disabled"?: boolean | undefined;
535
+ "aria-expanded"?: boolean | undefined;
536
+ "aria-selected"?: boolean | undefined;
537
+ "aria-hidden"?: boolean | undefined;
538
+ }>, never>>, "ref"> & {
539
+ ref?: React.Ref<import("react-native/types_generated/src/private/webapis/dom/nodes/ReactNativeElement").default>;
540
+ }, never>>;
541
+ interface Props {
542
+ mode: 'send' | 'receive';
543
+ amount: number;
544
+ currency: FPCurrency;
545
+ onBack: () => void;
546
+ onDone: () => void;
547
+ onSuccess?: (tx: FPTransaction) => void;
548
+ onError?: (err: FPError) => void;
549
+ }
550
+ export declare function BluetoothSubScreen({ mode, amount, currency, onBack, onDone, onSuccess, onError, }: Props): import("react/jsx-runtime").JSX.Element;
551
+ export {};
552
+ //# sourceMappingURL=BluetoothSubScreen.d.ts.map