react-native-external-keyboard 0.11.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/android/src/main/java/com/externalkeyboard/ExternalKeyboardViewPackage.java +24 -22
  2. package/android/src/main/java/com/externalkeyboard/services/KeyboardService.java +4 -13
  3. package/android/src/newarch/TextInputFocusWrapperManagerSpec.java +0 -3
  4. package/lib/commonjs/nativeSpec/ExternalKeyboardLockViewNativeComponent.ts +1 -3
  5. package/lib/commonjs/nativeSpec/ExternalKeyboardViewNativeComponent.ts +6 -5
  6. package/lib/commonjs/nativeSpec/KeyboardFocusGroupNativeComponent.ts +5 -3
  7. package/lib/commonjs/nativeSpec/TextInputFocusWrapperNativeComponent.ts +5 -3
  8. package/lib/module/nativeSpec/ExternalKeyboardLockViewNativeComponent.ts +1 -3
  9. package/lib/module/nativeSpec/ExternalKeyboardViewNativeComponent.ts +6 -5
  10. package/lib/module/nativeSpec/KeyboardFocusGroupNativeComponent.ts +5 -3
  11. package/lib/module/nativeSpec/TextInputFocusWrapperNativeComponent.ts +5 -3
  12. package/lib/typescript/src/components/BaseKeyboardView/BaseKeyboardView.d.ts +129 -3
  13. package/lib/typescript/src/components/BaseKeyboardView/BaseKeyboardView.d.ts.map +1 -1
  14. package/lib/typescript/src/components/KeyboardExtendedInput/KeyboardExtendedInput.d.ts +372 -6
  15. package/lib/typescript/src/components/KeyboardExtendedInput/KeyboardExtendedInput.d.ts.map +1 -1
  16. package/lib/typescript/src/components/KeyboardFocusLock/FocusFrame/FocusFrame.d.ts +1 -1
  17. package/lib/typescript/src/components/KeyboardFocusLock/FocusFrame/FocusFrame.d.ts.map +1 -1
  18. package/lib/typescript/src/components/KeyboardFocusLock/FocusTrap/FocusTrap.d.ts +1 -1
  19. package/lib/typescript/src/components/KeyboardFocusLock/FocusTrap/FocusTrap.d.ts.map +1 -1
  20. package/lib/typescript/src/components/KeyboardFocusView/KeyboardFocusView.d.ts +124 -1
  21. package/lib/typescript/src/components/KeyboardFocusView/KeyboardFocusView.d.ts.map +1 -1
  22. package/lib/typescript/src/components/Touchable/Pressable.d.ts +158 -1
  23. package/lib/typescript/src/components/Touchable/Pressable.d.ts.map +1 -1
  24. package/lib/typescript/src/context/OrderFocusContext.d.ts +1 -1
  25. package/lib/typescript/src/context/OrderFocusContext.d.ts.map +1 -1
  26. package/lib/typescript/src/index.d.ts +656 -9
  27. package/lib/typescript/src/index.d.ts.map +1 -1
  28. package/lib/typescript/src/nativeSpec/ExternalKeyboardLockViewNativeComponent.d.ts +2 -2
  29. package/lib/typescript/src/nativeSpec/ExternalKeyboardLockViewNativeComponent.d.ts.map +1 -1
  30. package/lib/typescript/src/nativeSpec/ExternalKeyboardViewNativeComponent.d.ts +2 -2
  31. package/lib/typescript/src/nativeSpec/ExternalKeyboardViewNativeComponent.d.ts.map +1 -1
  32. package/lib/typescript/src/nativeSpec/KeyboardFocusGroupNativeComponent.d.ts +2 -2
  33. package/lib/typescript/src/nativeSpec/KeyboardFocusGroupNativeComponent.d.ts.map +1 -1
  34. package/lib/typescript/src/nativeSpec/NativeExternalKeyboardModule.d.ts +1 -1
  35. package/lib/typescript/src/nativeSpec/TextInputFocusWrapperNativeComponent.d.ts +2 -2
  36. package/lib/typescript/src/nativeSpec/TextInputFocusWrapperNativeComponent.d.ts.map +1 -1
  37. package/lib/typescript/src/types/focus.types.d.ts +1 -10
  38. package/lib/typescript/src/types/focus.types.d.ts.map +1 -1
  39. package/lib/typescript/src/utils/useFocusStyle.d.ts +1005 -3
  40. package/lib/typescript/src/utils/useFocusStyle.d.ts.map +1 -1
  41. package/lib/typescript/src/utils/useKeyboardFocusContainer.d.ts +867 -3
  42. package/lib/typescript/src/utils/useKeyboardFocusContainer.d.ts.map +1 -1
  43. package/lib/typescript/src/utils/useRenderedChildren.d.ts +1 -1
  44. package/lib/typescript/src/utils/useRenderedChildren.d.ts.map +1 -1
  45. package/lib/typescript/src/utils/withKeyboardFocus.d.ts +6 -2
  46. package/lib/typescript/src/utils/withKeyboardFocus.d.ts.map +1 -1
  47. package/package.json +4 -7
  48. package/src/nativeSpec/ExternalKeyboardLockViewNativeComponent.ts +1 -3
  49. package/src/nativeSpec/ExternalKeyboardViewNativeComponent.ts +6 -5
  50. package/src/nativeSpec/KeyboardFocusGroupNativeComponent.ts +5 -3
  51. package/src/nativeSpec/TextInputFocusWrapperNativeComponent.ts +5 -3
  52. package/src/types/focus.types.ts +1 -10
@@ -8,25 +8,515 @@ export { useIsViewFocused } from './context/IsViewFocusedContext';
8
8
  export { KeyboardOrderFocusGroup, OrderFocusGroupContext, useOrderFocusGroup, } from './context/OrderFocusContext';
9
9
  export { Keyboard };
10
10
  export declare const Focus: {
11
- Frame: (props: import("react-native").ViewProps) => import("react").JSX.Element;
12
- Trap: ({ forceLock, ...props }: import("./types").KeyboardFocusLockProps) => import("react").JSX.Element;
11
+ Frame: (props: import("react-native").ViewProps) => import("react/jsx-runtime").JSX.Element;
12
+ Trap: ({ forceLock, ...props }: import("./types").KeyboardFocusLockProps) => import("react/jsx-runtime").JSX.Element;
13
13
  };
14
14
  export declare const K: {
15
- Input: import("react").ForwardRefExoticComponent<Omit<import("react-native").TextInputProps, "rejectResponderTermination" | "selectionHandleColor" | "cursorColor" | "maxFontSizeMultiplier"> & {
15
+ Input: import("react").ForwardRefExoticComponent<Omit<Readonly<Omit<Omit<Readonly<Omit<Readonly<{
16
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
17
+ onAccessibilityTap?: (() => unknown) | undefined;
18
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
19
+ onMagicTap?: (() => unknown) | undefined;
20
+ onAccessibilityEscape?: (() => unknown) | undefined;
21
+ }>, "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" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
22
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
23
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
24
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
25
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
26
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
27
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
28
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
29
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
30
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
31
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
32
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
33
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
34
+ }>, "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
35
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
36
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
37
+ }>, "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
38
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
39
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
40
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
41
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
42
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
43
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
44
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
45
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
46
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
47
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
48
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
49
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
50
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
51
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
52
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
53
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
54
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
55
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
56
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
57
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
58
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
59
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
60
+ }>, "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
61
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
62
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
63
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
64
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
65
+ }>, "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
66
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
67
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
68
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
69
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
70
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
71
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
72
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
73
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
74
+ }>, "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
75
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
76
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
77
+ renderToHardwareTextureAndroid?: boolean | undefined;
78
+ hasTVPreferredFocus?: boolean | undefined;
79
+ nextFocusDown?: number | undefined;
80
+ nextFocusForward?: number | undefined;
81
+ nextFocusLeft?: number | undefined;
82
+ nextFocusRight?: number | undefined;
83
+ nextFocusUp?: number | undefined;
84
+ focusable?: boolean | undefined;
85
+ tabIndex?: 0 | -1;
86
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
87
+ }>, "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
88
+ shouldRasterizeIOS?: boolean | undefined;
89
+ }>, "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
90
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
91
+ "aria-labelledby"?: string | undefined;
92
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
93
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
94
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
95
+ screenReaderFocusable?: boolean;
96
+ }>, "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<{
97
+ accessibilityIgnoresInvertColors?: boolean | undefined;
98
+ accessibilityViewIsModal?: boolean | undefined;
99
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
100
+ accessibilityLargeContentTitle?: string | undefined;
101
+ "aria-modal"?: boolean | undefined;
102
+ accessibilityElementsHidden?: boolean | undefined;
103
+ accessibilityLanguage?: string | undefined;
104
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
105
+ }>, "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"> & {
106
+ accessible?: boolean | undefined;
107
+ accessibilityLabel?: string | undefined;
108
+ accessibilityHint?: string | undefined;
109
+ "aria-label"?: string | undefined;
110
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
111
+ role?: import("react-native").Role | undefined;
112
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
113
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
114
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
115
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
116
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
117
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
118
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
119
+ "aria-busy"?: boolean | undefined;
120
+ "aria-checked"?: (boolean | undefined) | "mixed";
121
+ "aria-disabled"?: boolean | undefined;
122
+ "aria-expanded"?: boolean | undefined;
123
+ "aria-selected"?: boolean | undefined;
124
+ "aria-hidden"?: boolean | undefined;
125
+ }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
126
+ children?: React.ReactNode;
127
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
128
+ collapsable?: boolean | undefined;
129
+ collapsableChildren?: boolean | undefined;
130
+ id?: string;
131
+ testID?: string | undefined;
132
+ nativeID?: string | undefined;
133
+ needsOffscreenAlphaCompositing?: boolean | undefined;
134
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
135
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
136
+ removeClippedSubviews?: boolean | undefined;
137
+ experimental_accessibilityOrder?: Array<string> | undefined;
138
+ }>, never>>, "style" | "experimental_accessibilityOrder">, "onBlur" | "onFocus" | "style" | "autoFocus" | "blurOnSubmit" | "multiline" | "rejectResponderTermination" | "selectionHandleColor" | "cursorColor" | "maxFontSizeMultiplier" | "disableKeyboardShortcuts" | "clearButtonMode" | "clearTextOnFocus" | "dataDetectorTypes" | "enablesReturnKeyAutomatically" | "inputAccessoryViewID" | "inputAccessoryViewButtonLabel" | "keyboardAppearance" | "passwordRules" | "scrollEnabled" | "spellCheck" | "textContentType" | "lineBreakStrategyIOS" | "lineBreakModeIOS" | "smartInsertDelete" | "disableFullscreenUI" | "importantForAutofill" | "inlineImageLeft" | "inlineImagePadding" | "numberOfLines" | "returnKeyLabel" | "rows" | "showSoftInputOnFocus" | "textBreakStrategy" | "underlineColorAndroid" | "experimental_acceptDragAndDropTypes" | "autoCapitalize" | "autoComplete" | "autoCorrect" | "allowFontScaling" | "caretHidden" | "contextMenuHidden" | "defaultValue" | "editable" | "forwardedRef" | "enterKeyHint" | "inputMode" | "keyboardType" | "maxLength" | "onChange" | "onChangeText" | "onContentSizeChange" | "onEndEditing" | "onKeyPress" | "onPress" | "onPressIn" | "onPressOut" | "onSelectionChange" | "onSubmitEditing" | "onScroll" | "placeholder" | "placeholderTextColor" | "readOnly" | "returnKeyType" | "secureTextEntry" | "selection" | "selectionColor" | "selectTextOnFocus" | "submitBehavior" | "value" | "textAlign"> & Omit<Readonly<{
139
+ disableKeyboardShortcuts?: boolean | undefined;
140
+ clearButtonMode?: ("never" | "while-editing" | "unless-editing" | "always") | undefined;
141
+ clearTextOnFocus?: boolean | undefined;
142
+ dataDetectorTypes?: (import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").DataDetectorTypesType | undefined) | ReadonlyArray<import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").DataDetectorTypesType>;
143
+ enablesReturnKeyAutomatically?: boolean | undefined;
144
+ inputAccessoryViewID?: string | undefined;
145
+ inputAccessoryViewButtonLabel?: string | undefined;
146
+ keyboardAppearance?: ("default" | "light" | "dark") | undefined;
147
+ passwordRules?: import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").PasswordRules | undefined;
148
+ rejectResponderTermination?: boolean | undefined;
149
+ scrollEnabled?: boolean | undefined;
150
+ spellCheck?: boolean | undefined;
151
+ textContentType?: import("react-native").TextContentType | undefined;
152
+ lineBreakStrategyIOS?: ("none" | "standard" | "hangul-word" | "push-out") | undefined;
153
+ lineBreakModeIOS?: ("wordWrapping" | "char" | "clip" | "head" | "middle" | "tail") | undefined;
154
+ smartInsertDelete?: boolean | undefined;
155
+ }>, "onBlur" | "onFocus" | "style" | "autoFocus" | "blurOnSubmit" | "multiline" | "selectionHandleColor" | "cursorColor" | "maxFontSizeMultiplier" | "disableFullscreenUI" | "importantForAutofill" | "inlineImageLeft" | "inlineImagePadding" | "numberOfLines" | "returnKeyLabel" | "rows" | "showSoftInputOnFocus" | "textBreakStrategy" | "underlineColorAndroid" | "experimental_acceptDragAndDropTypes" | "autoCapitalize" | "autoComplete" | "autoCorrect" | "allowFontScaling" | "caretHidden" | "contextMenuHidden" | "defaultValue" | "editable" | "forwardedRef" | "enterKeyHint" | "inputMode" | "keyboardType" | "maxLength" | "onChange" | "onChangeText" | "onContentSizeChange" | "onEndEditing" | "onKeyPress" | "onPress" | "onPressIn" | "onPressOut" | "onSelectionChange" | "onSubmitEditing" | "onScroll" | "placeholder" | "placeholderTextColor" | "readOnly" | "returnKeyType" | "secureTextEntry" | "selection" | "selectionColor" | "selectTextOnFocus" | "submitBehavior" | "value" | "textAlign"> & Omit<Readonly<{
156
+ cursorColor?: import("react-native").ColorValue | undefined;
157
+ selectionHandleColor?: import("react-native").ColorValue | undefined;
158
+ disableFullscreenUI?: boolean | undefined;
159
+ importantForAutofill?: ("auto" | "no" | "noExcludeDescendants" | "yes" | "yesExcludeDescendants") | undefined;
160
+ inlineImageLeft?: string | undefined;
161
+ inlineImagePadding?: number | undefined;
162
+ numberOfLines?: number | undefined;
163
+ returnKeyLabel?: string | undefined;
164
+ rows?: number | undefined;
165
+ showSoftInputOnFocus?: boolean | undefined;
166
+ textBreakStrategy?: ("simple" | "highQuality" | "balanced") | undefined;
167
+ underlineColorAndroid?: import("react-native").ColorValue | undefined;
168
+ }>, "onBlur" | "onFocus" | "style" | "autoFocus" | "blurOnSubmit" | "multiline" | "maxFontSizeMultiplier" | "experimental_acceptDragAndDropTypes" | "autoCapitalize" | "autoComplete" | "autoCorrect" | "allowFontScaling" | "caretHidden" | "contextMenuHidden" | "defaultValue" | "editable" | "forwardedRef" | "enterKeyHint" | "inputMode" | "keyboardType" | "maxLength" | "onChange" | "onChangeText" | "onContentSizeChange" | "onEndEditing" | "onKeyPress" | "onPress" | "onPressIn" | "onPressOut" | "onSelectionChange" | "onSubmitEditing" | "onScroll" | "placeholder" | "placeholderTextColor" | "readOnly" | "returnKeyType" | "secureTextEntry" | "selection" | "selectionColor" | "selectTextOnFocus" | "submitBehavior" | "value" | "textAlign"> & Omit<Readonly<{
169
+ experimental_acceptDragAndDropTypes?: ReadonlyArray<string> | undefined;
170
+ autoCapitalize?: import("react-native").AutoCapitalize | undefined;
171
+ autoComplete?: ("additional-name" | "address-line1" | "address-line2" | "birthdate-day" | "birthdate-full" | "birthdate-month" | "birthdate-year" | "cc-csc" | "cc-exp" | "cc-exp-day" | "cc-exp-month" | "cc-exp-year" | "cc-number" | "cc-name" | "cc-given-name" | "cc-middle-name" | "cc-family-name" | "cc-type" | "country" | "current-password" | "email" | "family-name" | "gender" | "given-name" | "honorific-prefix" | "honorific-suffix" | "name" | "name-family" | "name-given" | "name-middle" | "name-middle-initial" | "name-prefix" | "name-suffix" | "new-password" | "nickname" | "one-time-code" | "organization" | "organization-title" | "password" | "password-new" | "postal-address" | "postal-address-country" | "postal-address-extended" | "postal-address-extended-postal-code" | "postal-address-locality" | "postal-address-region" | "postal-code" | "street-address" | "sms-otp" | "tel" | "tel-country-code" | "tel-national" | "tel-device" | "url" | "username" | "username-new" | "off") | undefined;
172
+ autoCorrect?: boolean | undefined;
173
+ autoFocus?: boolean | undefined;
174
+ allowFontScaling?: boolean | undefined;
175
+ caretHidden?: boolean | undefined;
176
+ contextMenuHidden?: boolean | undefined;
177
+ defaultValue?: string | undefined;
178
+ editable?: boolean | undefined;
179
+ forwardedRef?: React.Ref<import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").TextInputInstance> | undefined;
180
+ enterKeyHint?: import("react-native").EnterKeyHintTypeOptions | undefined;
181
+ inputMode?: import("react-native").InputModeOptions | undefined;
182
+ keyboardType?: import("react-native").KeyboardTypeOptions | undefined;
183
+ maxFontSizeMultiplier?: number | undefined;
184
+ maxLength?: number | undefined;
185
+ multiline?: boolean | undefined;
186
+ onBlur?: ((e: import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").TextInputBlurEvent) => unknown) | undefined;
187
+ onChange?: ((e: import("react-native").TextInputChangeEvent) => unknown) | undefined;
188
+ onChangeText?: ((text: string) => unknown) | undefined;
189
+ onContentSizeChange?: ((e: import("react-native").TextInputContentSizeChangeEvent) => unknown) | undefined;
190
+ onEndEditing?: ((e: import("react-native").TextInputEndEditingEvent) => unknown) | undefined;
191
+ onFocus?: ((e: import("react-native").TextInputFocusEvent) => unknown) | undefined;
192
+ onKeyPress?: ((e: import("react-native").TextInputKeyPressEvent) => unknown) | undefined;
193
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
194
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
195
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
196
+ onSelectionChange?: ((e: import("react-native").TextInputSelectionChangeEvent) => unknown) | undefined;
197
+ onSubmitEditing?: ((e: import("react-native").TextInputSubmitEditingEvent) => unknown) | undefined;
198
+ onScroll?: ((e: import("react-native").ScrollEvent) => unknown) | undefined;
199
+ placeholder?: string | undefined;
200
+ placeholderTextColor?: import("react-native").ColorValue | undefined;
201
+ readOnly?: boolean | undefined;
202
+ returnKeyType?: import("react-native").ReturnKeyTypeOptions | undefined;
203
+ secureTextEntry?: boolean | undefined;
204
+ selection?: Readonly<{
205
+ start: number;
206
+ end?: number | undefined;
207
+ }> | undefined;
208
+ selectionColor?: import("react-native").ColorValue | undefined;
209
+ selectTextOnFocus?: boolean | undefined;
210
+ blurOnSubmit?: boolean | undefined;
211
+ submitBehavior?: import("react-native").SubmitBehavior | undefined;
212
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
213
+ value?: string | undefined;
214
+ textAlign?: ("left" | "center" | "right") | undefined;
215
+ }>, never>>, "rejectResponderTermination" | "selectionHandleColor" | "cursorColor" | "maxFontSizeMultiplier"> & {
16
216
  rejectResponderTermination?: boolean | null | undefined;
17
- selectionHandleColor?: import("react-native").ColorValue | null | undefined;
18
- cursorColor?: import("react-native").ColorValue | null | undefined;
217
+ selectionHandleColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal | undefined;
218
+ cursorColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal | undefined;
19
219
  maxFontSizeMultiplier?: number | null | undefined;
20
220
  } & {
21
221
  focusType?: "default" | "press" | "auto";
22
222
  blurType?: "default" | "disable" | "auto";
23
- containerStyle?: import("react-native").StyleProp<import("react-native").ViewStyle>;
223
+ containerStyle?: import("react-native").StyleProp<Readonly<Omit<Readonly<Omit<Readonly<{
224
+ display?: "none" | "flex" | "contents";
225
+ width?: import("react-native").DimensionValue;
226
+ height?: import("react-native").DimensionValue;
227
+ bottom?: import("react-native").DimensionValue;
228
+ end?: import("react-native").DimensionValue;
229
+ left?: import("react-native").DimensionValue;
230
+ right?: import("react-native").DimensionValue;
231
+ start?: import("react-native").DimensionValue;
232
+ top?: import("react-native").DimensionValue;
233
+ inset?: import("react-native").DimensionValue;
234
+ insetBlock?: import("react-native").DimensionValue;
235
+ insetBlockEnd?: import("react-native").DimensionValue;
236
+ insetBlockStart?: import("react-native").DimensionValue;
237
+ insetInline?: import("react-native").DimensionValue;
238
+ insetInlineEnd?: import("react-native").DimensionValue;
239
+ insetInlineStart?: import("react-native").DimensionValue;
240
+ minWidth?: import("react-native").DimensionValue;
241
+ maxWidth?: import("react-native").DimensionValue;
242
+ minHeight?: import("react-native").DimensionValue;
243
+ maxHeight?: import("react-native").DimensionValue;
244
+ margin?: import("react-native").DimensionValue;
245
+ marginBlock?: import("react-native").DimensionValue;
246
+ marginBlockEnd?: import("react-native").DimensionValue;
247
+ marginBlockStart?: import("react-native").DimensionValue;
248
+ marginBottom?: import("react-native").DimensionValue;
249
+ marginEnd?: import("react-native").DimensionValue;
250
+ marginHorizontal?: import("react-native").DimensionValue;
251
+ marginInline?: import("react-native").DimensionValue;
252
+ marginInlineEnd?: import("react-native").DimensionValue;
253
+ marginInlineStart?: import("react-native").DimensionValue;
254
+ marginLeft?: import("react-native").DimensionValue;
255
+ marginRight?: import("react-native").DimensionValue;
256
+ marginStart?: import("react-native").DimensionValue;
257
+ marginTop?: import("react-native").DimensionValue;
258
+ marginVertical?: import("react-native").DimensionValue;
259
+ padding?: import("react-native").DimensionValue;
260
+ paddingBlock?: import("react-native").DimensionValue;
261
+ paddingBlockEnd?: import("react-native").DimensionValue;
262
+ paddingBlockStart?: import("react-native").DimensionValue;
263
+ paddingBottom?: import("react-native").DimensionValue;
264
+ paddingEnd?: import("react-native").DimensionValue;
265
+ paddingHorizontal?: import("react-native").DimensionValue;
266
+ paddingInline?: import("react-native").DimensionValue;
267
+ paddingInlineEnd?: import("react-native").DimensionValue;
268
+ paddingInlineStart?: import("react-native").DimensionValue;
269
+ paddingLeft?: import("react-native").DimensionValue;
270
+ paddingRight?: import("react-native").DimensionValue;
271
+ paddingStart?: import("react-native").DimensionValue;
272
+ paddingTop?: import("react-native").DimensionValue;
273
+ paddingVertical?: import("react-native").DimensionValue;
274
+ borderWidth?: number;
275
+ borderBottomWidth?: number;
276
+ borderEndWidth?: number;
277
+ borderLeftWidth?: number;
278
+ borderRightWidth?: number;
279
+ borderStartWidth?: number;
280
+ borderTopWidth?: number;
281
+ position?: "absolute" | "relative" | "static";
282
+ flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
283
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse";
284
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
285
+ alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
286
+ alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
287
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
288
+ overflow?: "visible" | "hidden" | "scroll";
289
+ flex?: number;
290
+ flexGrow?: number;
291
+ flexShrink?: number;
292
+ flexBasis?: number | string;
293
+ aspectRatio?: number | string;
294
+ boxSizing?: "border-box" | "content-box";
295
+ zIndex?: number;
296
+ direction?: "inherit" | "ltr" | "rtl";
297
+ rowGap?: number | string;
298
+ columnGap?: number | string;
299
+ gap?: number | string;
300
+ }>, "pointerEvents" | "filter" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<Omit<Readonly<{
301
+ shadowColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
302
+ shadowOffset?: Readonly<{
303
+ width?: number;
304
+ height?: number;
305
+ }>;
306
+ shadowOpacity?: number;
307
+ shadowRadius?: number;
308
+ }>, never> & Omit<Readonly<{}>, never>>, "pointerEvents" | "filter" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
309
+ transform?: ReadonlyArray<Readonly<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MaximumOneOf<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MergeUnion<{
310
+ readonly perspective: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
311
+ } | {
312
+ readonly rotate: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
313
+ } | {
314
+ readonly rotateX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
315
+ } | {
316
+ readonly rotateY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
317
+ } | {
318
+ readonly rotateZ: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
319
+ } | {
320
+ readonly scale: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
321
+ } | {
322
+ readonly scaleX: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
323
+ } | {
324
+ readonly scaleY: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
325
+ } | {
326
+ readonly translateX: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
327
+ } | {
328
+ readonly translateY: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
329
+ } | {
330
+ readonly translate: [number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node, number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node] | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
331
+ } | {
332
+ readonly skewX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
333
+ } | {
334
+ readonly skewY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
335
+ } | {
336
+ readonly matrix: ReadonlyArray<number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node> | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
337
+ }>>>> | string;
338
+ transformOrigin?: [string | number, string | number, string | number] | string;
339
+ }>, "pointerEvents" | "filter" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
340
+ backfaceVisibility?: "visible" | "hidden";
341
+ backgroundColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
342
+ borderColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
343
+ borderCurve?: "circular" | "continuous";
344
+ borderBottomColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
345
+ borderEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
346
+ borderLeftColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
347
+ borderRightColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
348
+ borderStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
349
+ borderTopColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
350
+ borderBlockColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
351
+ borderBlockEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
352
+ borderBlockStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
353
+ borderRadius?: number | string;
354
+ borderBottomEndRadius?: number | string;
355
+ borderBottomLeftRadius?: number | string;
356
+ borderBottomRightRadius?: number | string;
357
+ borderBottomStartRadius?: number | string;
358
+ borderEndEndRadius?: number | string;
359
+ borderEndStartRadius?: number | string;
360
+ borderStartEndRadius?: number | string;
361
+ borderStartStartRadius?: number | string;
362
+ borderTopEndRadius?: number | string;
363
+ borderTopLeftRadius?: number | string;
364
+ borderTopRightRadius?: number | string;
365
+ borderTopStartRadius?: number | string;
366
+ borderStyle?: "solid" | "dotted" | "dashed";
367
+ borderWidth?: number;
368
+ borderBottomWidth?: number;
369
+ borderEndWidth?: number;
370
+ borderLeftWidth?: number;
371
+ borderRightWidth?: number;
372
+ borderStartWidth?: number;
373
+ borderTopWidth?: number;
374
+ opacity?: number;
375
+ outlineColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
376
+ outlineOffset?: number;
377
+ outlineStyle?: "solid" | "dotted" | "dashed";
378
+ outlineWidth?: number;
379
+ elevation?: number;
380
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only";
381
+ cursor?: import("react-native").CursorValue;
382
+ boxShadow?: ReadonlyArray<import("react-native").BoxShadowValue> | string;
383
+ filter?: ReadonlyArray<import("react-native").FilterFunction> | string;
384
+ mixBlendMode?: "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
385
+ experimental_backgroundImage?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundImageValue> | string;
386
+ experimental_backgroundSize?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundSizeValue> | string;
387
+ experimental_backgroundPosition?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundPositionValue> | string;
388
+ experimental_backgroundRepeat?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundRepeatValue> | string;
389
+ isolation?: "auto" | "isolate";
390
+ }>, never>>, never> & Omit<Readonly<{}>, never>>> | undefined;
24
391
  onFocusChange?: (isFocused: boolean) => void;
25
392
  focusStyle?: import("./types").FocusStyle;
26
393
  containerFocusStyle?: import("./types").FocusStyle;
27
394
  submitBehavior?: string;
28
- } & import("./types/baseKeyboardView.types").CommonFocusProps & import("./types").FocusOrderProps & import("react").RefAttributes<import("react-native").TextInput>>;
29
- View: import("react").ForwardRefExoticComponent<import("react-native").ViewProps & {
395
+ } & import("./types/baseKeyboardView.types").CommonFocusProps & import("./types").FocusOrderProps & import("react").RefAttributes<import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").TextInputType>>;
396
+ View: import("react").ForwardRefExoticComponent<Readonly<Omit<Readonly<{
397
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
398
+ onAccessibilityTap?: (() => unknown) | undefined;
399
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
400
+ onMagicTap?: (() => unknown) | undefined;
401
+ onAccessibilityEscape?: (() => unknown) | undefined;
402
+ }>, "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" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
403
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
404
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
405
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
406
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
407
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
408
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
409
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
410
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
411
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
412
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
413
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
414
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
415
+ }>, "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
416
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
417
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
418
+ }>, "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
419
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
420
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
421
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
422
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
423
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
424
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
425
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
426
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
427
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
428
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
429
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
430
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
431
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
432
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
433
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
434
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
435
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
436
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
437
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
438
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
439
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
440
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
441
+ }>, "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
442
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
443
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
444
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
445
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
446
+ }>, "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
447
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
448
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
449
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
450
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
451
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
452
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
453
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
454
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
455
+ }>, "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
456
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
457
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
458
+ renderToHardwareTextureAndroid?: boolean | undefined;
459
+ hasTVPreferredFocus?: boolean | undefined;
460
+ nextFocusDown?: number | undefined;
461
+ nextFocusForward?: number | undefined;
462
+ nextFocusLeft?: number | undefined;
463
+ nextFocusRight?: number | undefined;
464
+ nextFocusUp?: number | undefined;
465
+ focusable?: boolean | undefined;
466
+ tabIndex?: 0 | -1;
467
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
468
+ }>, "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
469
+ shouldRasterizeIOS?: boolean | undefined;
470
+ }>, "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
471
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
472
+ "aria-labelledby"?: string | undefined;
473
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
474
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
475
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
476
+ screenReaderFocusable?: boolean;
477
+ }>, "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<{
478
+ accessibilityIgnoresInvertColors?: boolean | undefined;
479
+ accessibilityViewIsModal?: boolean | undefined;
480
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
481
+ accessibilityLargeContentTitle?: string | undefined;
482
+ "aria-modal"?: boolean | undefined;
483
+ accessibilityElementsHidden?: boolean | undefined;
484
+ accessibilityLanguage?: string | undefined;
485
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
486
+ }>, "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"> & {
487
+ accessible?: boolean | undefined;
488
+ accessibilityLabel?: string | undefined;
489
+ accessibilityHint?: string | undefined;
490
+ "aria-label"?: string | undefined;
491
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
492
+ role?: import("react-native").Role | undefined;
493
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
494
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
495
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
496
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
497
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
498
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
499
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
500
+ "aria-busy"?: boolean | undefined;
501
+ "aria-checked"?: (boolean | undefined) | "mixed";
502
+ "aria-disabled"?: boolean | undefined;
503
+ "aria-expanded"?: boolean | undefined;
504
+ "aria-selected"?: boolean | undefined;
505
+ "aria-hidden"?: boolean | undefined;
506
+ }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
507
+ children?: React.ReactNode;
508
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
509
+ collapsable?: boolean | undefined;
510
+ collapsableChildren?: boolean | undefined;
511
+ id?: string;
512
+ testID?: string | undefined;
513
+ nativeID?: string | undefined;
514
+ needsOffscreenAlphaCompositing?: boolean | undefined;
515
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
516
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
517
+ removeClippedSubviews?: boolean | undefined;
518
+ experimental_accessibilityOrder?: Array<string> | undefined;
519
+ }>, never>> & {
30
520
  focusableWrapper?: boolean;
31
521
  onFocusChange?: import("./types").OnFocusChangeFn;
32
522
  onKeyUpPress?: import("./types").OnKeyPressFn;
@@ -51,6 +541,163 @@ export declare const K: {
51
541
  } & {
52
542
  withView?: boolean;
53
543
  } & import("react").RefAttributes<import("./types").KeyboardFocus>>;
54
- Pressable: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("./types").WithKeyboardFocusProps<import("react-native").PressableProps & import("react").RefAttributes<import("react-native").View>, unknown, import("react-native").View>, "ref"> & import("react").RefAttributes<import("./types").KeyboardFocus | import("react-native").View>>>;
544
+ Pressable: import("react").NamedExoticComponent<Omit<import("./types").WithKeyboardFocusProps<Omit<Readonly<Omit<Omit<Readonly<Omit<Readonly<{
545
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
546
+ onAccessibilityTap?: (() => unknown) | undefined;
547
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
548
+ onMagicTap?: (() => unknown) | undefined;
549
+ onAccessibilityEscape?: (() => unknown) | undefined;
550
+ }>, "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" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
551
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
552
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
553
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
554
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
555
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
556
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
557
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
558
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
559
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
560
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
561
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
562
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
563
+ }>, "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
564
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
565
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
566
+ }>, "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
567
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
568
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
569
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
570
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
571
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
572
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
573
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
574
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
575
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
576
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
577
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
578
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
579
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
580
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
581
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
582
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
583
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
584
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
585
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
586
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
587
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
588
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
589
+ }>, "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
590
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
591
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
592
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
593
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
594
+ }>, "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
595
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
596
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
597
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
598
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
599
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
600
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
601
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
602
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
603
+ }>, "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
604
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
605
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
606
+ renderToHardwareTextureAndroid?: boolean | undefined;
607
+ hasTVPreferredFocus?: boolean | undefined;
608
+ nextFocusDown?: number | undefined;
609
+ nextFocusForward?: number | undefined;
610
+ nextFocusLeft?: number | undefined;
611
+ nextFocusRight?: number | undefined;
612
+ nextFocusUp?: number | undefined;
613
+ focusable?: boolean | undefined;
614
+ tabIndex?: 0 | -1;
615
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
616
+ }>, "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
617
+ shouldRasterizeIOS?: boolean | undefined;
618
+ }>, "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
619
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
620
+ "aria-labelledby"?: string | undefined;
621
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
622
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
623
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
624
+ screenReaderFocusable?: boolean;
625
+ }>, "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<{
626
+ accessibilityIgnoresInvertColors?: boolean | undefined;
627
+ accessibilityViewIsModal?: boolean | undefined;
628
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
629
+ accessibilityLargeContentTitle?: string | undefined;
630
+ "aria-modal"?: boolean | undefined;
631
+ accessibilityElementsHidden?: boolean | undefined;
632
+ accessibilityLanguage?: string | undefined;
633
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
634
+ }>, "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"> & {
635
+ accessible?: boolean | undefined;
636
+ accessibilityLabel?: string | undefined;
637
+ accessibilityHint?: string | undefined;
638
+ "aria-label"?: string | undefined;
639
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
640
+ role?: import("react-native").Role | undefined;
641
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
642
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
643
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
644
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
645
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
646
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
647
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
648
+ "aria-busy"?: boolean | undefined;
649
+ "aria-checked"?: (boolean | undefined) | "mixed";
650
+ "aria-disabled"?: boolean | undefined;
651
+ "aria-expanded"?: boolean | undefined;
652
+ "aria-selected"?: boolean | undefined;
653
+ "aria-hidden"?: boolean | undefined;
654
+ }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
655
+ children?: React.ReactNode;
656
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
657
+ collapsable?: boolean | undefined;
658
+ collapsableChildren?: boolean | undefined;
659
+ id?: string;
660
+ testID?: string | undefined;
661
+ nativeID?: string | undefined;
662
+ needsOffscreenAlphaCompositing?: boolean | undefined;
663
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
664
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
665
+ removeClippedSubviews?: boolean | undefined;
666
+ experimental_accessibilityOrder?: Array<string> | undefined;
667
+ }>, never>>, "onMouseEnter" | "onMouseLeave">, "children" | "style" | "testID" | "hitSlop" | "onLayout" | "cancelable" | "onPress" | "onPressIn" | "onPressOut" | "onLongPress" | "delayHoverIn" | "delayHoverOut" | "delayLongPress" | "disabled" | "pressRetentionOffset" | "onHoverIn" | "onHoverOut" | "onPressMove" | "blockNativeResponder" | "android_disableSound" | "android_ripple" | "testOnly_pressed" | "unstable_pressDelay"> & Omit<Readonly<{
668
+ cancelable?: boolean | undefined;
669
+ children?: React.ReactNode | ((state: import("react-native").PressableStateCallbackType) => React.ReactNode);
670
+ delayHoverIn?: number | undefined;
671
+ delayHoverOut?: number | undefined;
672
+ delayLongPress?: number | undefined;
673
+ disabled?: boolean | undefined;
674
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/Rect").RectOrSize | undefined;
675
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/Rect").RectOrSize | undefined;
676
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
677
+ onHoverIn?: ((event: import("react-native").MouseEvent) => unknown) | undefined;
678
+ onHoverOut?: ((event: import("react-native").MouseEvent) => unknown) | undefined;
679
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
680
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
681
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
682
+ onPressMove?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
683
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
684
+ blockNativeResponder?: boolean | undefined;
685
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ViewStyleProp_Internal | ((state: import("react-native").PressableStateCallbackType) => import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp) | undefined;
686
+ testID?: string | undefined;
687
+ android_disableSound?: boolean | undefined;
688
+ android_ripple?: import("react-native").PressableAndroidRippleConfig | undefined;
689
+ testOnly_pressed?: boolean | undefined;
690
+ unstable_pressDelay?: number | undefined;
691
+ }>, never>>, "ref"> & {
692
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").View>>;
693
+ }, unknown, (props: Omit<import("react-native").ViewProps, keyof {
694
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
695
+ }> & {
696
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
697
+ }) => React.ReactNode>, "ref"> & import("react").RefAttributes<import("./types").KeyboardFocus | ((props: Omit<import("react-native").ViewProps, keyof {
698
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
699
+ }> & {
700
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
701
+ }) => React.ReactNode)>>;
55
702
  };
56
703
  //# sourceMappingURL=index.d.ts.map