@campxdev/react-native-blueprint 0.1.1 → 0.1.3

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 (78) hide show
  1. package/lib/module/app/_layout.js +1 -1
  2. package/lib/module/app/_layout.js.map +1 -1
  3. package/lib/module/components/ui/index.js +1 -0
  4. package/lib/module/components/ui/index.js.map +1 -1
  5. package/lib/module/global.css +417 -0
  6. package/lib/module/types/global.d.js +6 -0
  7. package/lib/module/types/global.d.js.map +1 -0
  8. package/lib/module/types/rn-primitives.d.js +6 -0
  9. package/lib/module/types/rn-primitives.d.js.map +1 -0
  10. package/lib/typescript/src/app/_layout.d.ts +7 -8
  11. package/lib/typescript/src/components/ui/Accordion.d.ts +103 -11
  12. package/lib/typescript/src/components/ui/Alert-Dialog.d.ts +167 -10
  13. package/lib/typescript/src/components/ui/Alert-Dialog.d.ts.map +1 -1
  14. package/lib/typescript/src/components/ui/Alert.d.ts +59 -10
  15. package/lib/typescript/src/components/ui/Avatar.d.ts +1350 -10
  16. package/lib/typescript/src/components/ui/Badge.d.ts +203 -10
  17. package/lib/typescript/src/components/ui/Bottom-Sheet.d.ts +43 -11
  18. package/lib/typescript/src/components/ui/Button.d.ts +175 -10
  19. package/lib/typescript/src/components/ui/Card.d.ts +853 -10
  20. package/lib/typescript/src/components/ui/Checkbox.d.ts +36 -11
  21. package/lib/typescript/src/components/ui/Collapsible.d.ts +1 -147
  22. package/lib/typescript/src/components/ui/Collapsible.d.ts.map +1 -1
  23. package/lib/typescript/src/components/ui/Context-Menu.d.ts +149 -10
  24. package/lib/typescript/src/components/ui/Context-Menu.d.ts.map +1 -1
  25. package/lib/typescript/src/components/ui/Custom-Card.d.ts +863 -10
  26. package/lib/typescript/src/components/ui/Dialog.d.ts +125 -10
  27. package/lib/typescript/src/components/ui/Dialog.d.ts.map +1 -1
  28. package/lib/typescript/src/components/ui/Dropdown-Menu.d.ts +283 -10
  29. package/lib/typescript/src/components/ui/Dropdown-Menu.d.ts.map +1 -1
  30. package/lib/typescript/src/components/ui/Greeting-Card.d.ts +152 -10
  31. package/lib/typescript/src/components/ui/Hover-Card.d.ts +67 -10
  32. package/lib/typescript/src/components/ui/Hover-Card.d.ts.map +1 -1
  33. package/lib/typescript/src/components/ui/Icon.d.ts +43 -11
  34. package/lib/typescript/src/components/ui/Input.d.ts +51 -10
  35. package/lib/typescript/src/components/ui/Label.d.ts +104 -10
  36. package/lib/typescript/src/components/ui/Menubar.d.ts +174 -10
  37. package/lib/typescript/src/components/ui/NavBar.d.ts +271 -9
  38. package/lib/typescript/src/components/ui/Popover.d.ts +70 -10
  39. package/lib/typescript/src/components/ui/Popover.d.ts.map +1 -1
  40. package/lib/typescript/src/components/ui/Progress.d.ts +27 -11
  41. package/lib/typescript/src/components/ui/Radio-Group.d.ts +47 -11
  42. package/lib/typescript/src/components/ui/Select.d.ts +106 -10
  43. package/lib/typescript/src/components/ui/Separator.d.ts +165 -10
  44. package/lib/typescript/src/components/ui/Skeleton.d.ts +40 -11
  45. package/lib/typescript/src/components/ui/Slider.d.ts +52 -8
  46. package/lib/typescript/src/components/ui/Switch.d.ts +34 -11
  47. package/lib/typescript/src/components/ui/Table.d.ts +69 -10
  48. package/lib/typescript/src/components/ui/Tabs.d.ts +51 -11
  49. package/lib/typescript/src/components/ui/Text.d.ts +115 -10
  50. package/lib/typescript/src/components/ui/Textarea.d.ts +60 -10
  51. package/lib/typescript/src/components/ui/Theme-Toggle.d.ts +193 -10
  52. package/lib/typescript/src/components/ui/Toast.d.ts +54 -10
  53. package/lib/typescript/src/components/ui/Toggle-Group.d.ts +48 -10
  54. package/lib/typescript/src/components/ui/Toggle.d.ts +52 -10
  55. package/lib/typescript/src/components/ui/Tooltip.d.ts +70 -10
  56. package/lib/typescript/src/components/ui/Tooltip.d.ts.map +1 -1
  57. package/lib/typescript/src/components/ui/index.d.ts +7 -2
  58. package/lib/typescript/src/components/ui/index.d.ts.map +1 -1
  59. package/lib/typescript/src/index.d.ts +7 -93
  60. package/lib/typescript/src/lib/ThemeProvider.d.ts +136 -13
  61. package/lib/typescript/src/lib/cornerRadius.d.ts +112 -21
  62. package/lib/typescript/src/lib/fonts.d.ts +21 -30
  63. package/lib/typescript/src/lib/theme.d.ts +86 -8
  64. package/lib/typescript/src/lib/utils.d.ts +111 -1
  65. package/package.json +2 -9
  66. package/src/app/_layout.tsx +1 -1
  67. package/src/components/ui/index.ts +1 -0
  68. package/src/global.css +417 -0
  69. package/src/types/global.d.ts +44 -0
  70. package/src/types/rn-primitives.d.ts +70 -0
  71. package/lib/typescript/babel.config.d.ts +0 -13
  72. package/lib/typescript/babel.config.d.ts.map +0 -1
  73. package/lib/typescript/metro.config.d.ts +0 -3
  74. package/lib/typescript/metro.config.d.ts.map +0 -1
  75. package/lib/typescript/src/components/ui/Floating-Action-Button.d.ts +0 -11
  76. package/lib/typescript/src/components/ui.d.ts +0 -49
  77. package/lib/typescript/tailwind.config.d.ts +0 -3
  78. package/lib/typescript/tailwind.config.d.ts.map +0 -1
@@ -1,11 +1,854 @@
1
1
  import * as React from 'react';
2
- import { ViewProps } from 'react-native';
3
-
4
- export interface CardProps extends ViewProps {
5
- className?: string;
6
- children?: React.ReactNode;
7
- [key: string]: any;
8
- }
9
-
10
- export const Card: React.ComponentType<CardProps>;
11
- export default Card;
2
+ /**
3
+ * Card container component - Main wrapper for card content
4
+ *
5
+ * Provides elevated container with border, rounded corners, and shadow.
6
+ * Use with CardHeader, CardTitle, CardDescription, CardContent, and CardFooter
7
+ * for a complete card structure.
8
+ *
9
+ * @component
10
+ * @example
11
+ * ```tsx
12
+ * <Card>
13
+ * <CardHeader>
14
+ * <CardTitle><Text>Title</Text></CardTitle>
15
+ * <CardDescription><Text>Description</Text></CardDescription>
16
+ * </CardHeader>
17
+ * <CardContent>
18
+ * <Text>Card content goes here</Text>
19
+ * </CardContent>
20
+ * <CardFooter>
21
+ * <Button>Action</Button>
22
+ * </CardFooter>
23
+ * </Card>
24
+ * ```
25
+ *
26
+ * @property {boolean} [asChild] - When true, merges props into immediate child
27
+ * @property {string} [className] - Additional Tailwind classes
28
+ */
29
+ declare const Card: React.ForwardRefExoticComponent<Omit<Omit<Readonly<Omit<Readonly<{
30
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
31
+ onAccessibilityTap?: (() => unknown) | undefined;
32
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
33
+ onMagicTap?: (() => unknown) | undefined;
34
+ onAccessibilityEscape?: (() => unknown) | undefined;
35
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
36
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
37
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
38
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
39
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
40
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
41
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
42
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
43
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
44
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
45
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
46
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
47
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
48
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
49
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
50
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
51
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
52
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
53
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
54
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
55
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
56
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
57
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
58
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
59
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
60
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
61
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
62
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
63
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
64
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
65
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
66
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
67
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
68
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
69
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
70
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
71
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
72
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
73
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
74
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
75
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
76
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
77
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
78
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
79
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
80
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
81
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
82
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
83
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
84
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
85
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
86
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
87
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
88
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
89
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
90
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
91
+ renderToHardwareTextureAndroid?: boolean | undefined;
92
+ hasTVPreferredFocus?: boolean | undefined;
93
+ nextFocusDown?: number | undefined;
94
+ nextFocusForward?: number | undefined;
95
+ nextFocusLeft?: number | undefined;
96
+ nextFocusRight?: number | undefined;
97
+ nextFocusUp?: number | undefined;
98
+ focusable?: boolean | undefined;
99
+ tabIndex?: 0 | -1;
100
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
101
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
102
+ shouldRasterizeIOS?: boolean | undefined;
103
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
104
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
105
+ "aria-labelledby"?: string | undefined;
106
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
107
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
108
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
109
+ screenReaderFocusable?: boolean;
110
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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<{
111
+ accessibilityIgnoresInvertColors?: boolean | undefined;
112
+ accessibilityViewIsModal?: boolean | undefined;
113
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
114
+ accessibilityLargeContentTitle?: string | undefined;
115
+ "aria-modal"?: boolean | undefined;
116
+ accessibilityElementsHidden?: boolean | undefined;
117
+ accessibilityLanguage?: string | undefined;
118
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
119
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
120
+ accessible?: boolean | undefined;
121
+ accessibilityLabel?: string | undefined;
122
+ accessibilityHint?: string | undefined;
123
+ "aria-label"?: string | undefined;
124
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
125
+ role?: import("react-native").Role | undefined;
126
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
127
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
128
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
129
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
130
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
131
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
132
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
133
+ "aria-busy"?: boolean | undefined;
134
+ "aria-checked"?: (boolean | undefined) | "mixed";
135
+ "aria-disabled"?: boolean | undefined;
136
+ "aria-expanded"?: boolean | undefined;
137
+ "aria-selected"?: boolean | undefined;
138
+ "aria-hidden"?: boolean | undefined;
139
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
140
+ children?: React.ReactNode;
141
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
142
+ collapsable?: boolean | undefined;
143
+ collapsableChildren?: boolean | undefined;
144
+ id?: string;
145
+ testID?: string | undefined;
146
+ nativeID?: string | undefined;
147
+ needsOffscreenAlphaCompositing?: boolean | undefined;
148
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
149
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
150
+ removeClippedSubviews?: boolean | undefined;
151
+ experimental_accessibilityOrder?: Array<string> | undefined;
152
+ }>, never>>, "ref"> & {
153
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Components/View/ViewNativeComponent").default>>;
154
+ }, "ref"> & {
155
+ asChild?: boolean;
156
+ } & {
157
+ className?: string;
158
+ } & React.RefAttributes<import("react-native/types_generated/src/private/types/HostInstance").LegacyHostInstanceMethods>>;
159
+ /**
160
+ * CardHeader - Container for card title and description
161
+ *
162
+ * Provides proper spacing for title and description elements at the top of a card.
163
+ *
164
+ * @property {boolean} [asChild] - When true, merges props into immediate child
165
+ * @property {string} [className] - Additional Tailwind classes
166
+ */
167
+ declare const CardHeader: React.ForwardRefExoticComponent<Omit<Omit<Readonly<Omit<Readonly<{
168
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
169
+ onAccessibilityTap?: (() => unknown) | undefined;
170
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
171
+ onMagicTap?: (() => unknown) | undefined;
172
+ onAccessibilityEscape?: (() => unknown) | undefined;
173
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
174
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
175
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
176
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
177
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
178
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
179
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
180
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
181
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
182
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
183
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
184
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
185
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
186
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
187
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
188
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
189
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
190
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
191
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
192
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
193
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
194
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
195
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
196
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
197
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
198
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
199
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
200
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
201
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
202
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
203
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
204
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
205
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
206
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
207
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
208
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
209
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
210
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
211
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
212
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
213
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
214
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
215
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
216
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
217
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
218
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
219
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
220
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
221
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
222
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
223
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
224
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
225
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
226
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
227
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
228
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
229
+ renderToHardwareTextureAndroid?: boolean | undefined;
230
+ hasTVPreferredFocus?: boolean | undefined;
231
+ nextFocusDown?: number | undefined;
232
+ nextFocusForward?: number | undefined;
233
+ nextFocusLeft?: number | undefined;
234
+ nextFocusRight?: number | undefined;
235
+ nextFocusUp?: number | undefined;
236
+ focusable?: boolean | undefined;
237
+ tabIndex?: 0 | -1;
238
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
239
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
240
+ shouldRasterizeIOS?: boolean | undefined;
241
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
242
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
243
+ "aria-labelledby"?: string | undefined;
244
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
245
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
246
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
247
+ screenReaderFocusable?: boolean;
248
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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<{
249
+ accessibilityIgnoresInvertColors?: boolean | undefined;
250
+ accessibilityViewIsModal?: boolean | undefined;
251
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
252
+ accessibilityLargeContentTitle?: string | undefined;
253
+ "aria-modal"?: boolean | undefined;
254
+ accessibilityElementsHidden?: boolean | undefined;
255
+ accessibilityLanguage?: string | undefined;
256
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
257
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
258
+ accessible?: boolean | undefined;
259
+ accessibilityLabel?: string | undefined;
260
+ accessibilityHint?: string | undefined;
261
+ "aria-label"?: string | undefined;
262
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
263
+ role?: import("react-native").Role | undefined;
264
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
265
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
266
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
267
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
268
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
269
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
270
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
271
+ "aria-busy"?: boolean | undefined;
272
+ "aria-checked"?: (boolean | undefined) | "mixed";
273
+ "aria-disabled"?: boolean | undefined;
274
+ "aria-expanded"?: boolean | undefined;
275
+ "aria-selected"?: boolean | undefined;
276
+ "aria-hidden"?: boolean | undefined;
277
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
278
+ children?: React.ReactNode;
279
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
280
+ collapsable?: boolean | undefined;
281
+ collapsableChildren?: boolean | undefined;
282
+ id?: string;
283
+ testID?: string | undefined;
284
+ nativeID?: string | undefined;
285
+ needsOffscreenAlphaCompositing?: boolean | undefined;
286
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
287
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
288
+ removeClippedSubviews?: boolean | undefined;
289
+ experimental_accessibilityOrder?: Array<string> | undefined;
290
+ }>, never>>, "ref"> & {
291
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Components/View/ViewNativeComponent").default>>;
292
+ }, "ref"> & {
293
+ asChild?: boolean;
294
+ } & {
295
+ className?: string;
296
+ } & React.RefAttributes<import("react-native/types_generated/src/private/types/HostInstance").LegacyHostInstanceMethods>>;
297
+ /**
298
+ * CardTitle - Main title text for the card
299
+ *
300
+ * Automatically styles child Text components with large, semibold typography.
301
+ * Uses TextClassContext to apply consistent styling to nested Text elements.
302
+ *
303
+ * @property {boolean} [asChild] - When true, merges props into immediate child
304
+ * @property {string} [className] - Additional Tailwind classes for text styling
305
+ */
306
+ declare const CardTitle: React.ForwardRefExoticComponent<Omit<Omit<Readonly<Omit<Readonly<{
307
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
308
+ onAccessibilityTap?: (() => unknown) | undefined;
309
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
310
+ onMagicTap?: (() => unknown) | undefined;
311
+ onAccessibilityEscape?: (() => unknown) | undefined;
312
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
313
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
314
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
315
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
316
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
317
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
318
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
319
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
320
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
321
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
322
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
323
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
324
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
325
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
326
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
327
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
328
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
329
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
330
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
331
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
332
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
333
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
334
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
335
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
336
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
337
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
338
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
339
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
340
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
341
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
342
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
343
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
344
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
345
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
346
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
347
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
348
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
349
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
350
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
351
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
352
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
353
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
354
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
355
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
356
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
357
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
358
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
359
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
360
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
361
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
362
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
363
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
364
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
365
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
366
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
367
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
368
+ renderToHardwareTextureAndroid?: boolean | undefined;
369
+ hasTVPreferredFocus?: boolean | undefined;
370
+ nextFocusDown?: number | undefined;
371
+ nextFocusForward?: number | undefined;
372
+ nextFocusLeft?: number | undefined;
373
+ nextFocusRight?: number | undefined;
374
+ nextFocusUp?: number | undefined;
375
+ focusable?: boolean | undefined;
376
+ tabIndex?: 0 | -1;
377
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
378
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
379
+ shouldRasterizeIOS?: boolean | undefined;
380
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
381
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
382
+ "aria-labelledby"?: string | undefined;
383
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
384
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
385
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
386
+ screenReaderFocusable?: boolean;
387
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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<{
388
+ accessibilityIgnoresInvertColors?: boolean | undefined;
389
+ accessibilityViewIsModal?: boolean | undefined;
390
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
391
+ accessibilityLargeContentTitle?: string | undefined;
392
+ "aria-modal"?: boolean | undefined;
393
+ accessibilityElementsHidden?: boolean | undefined;
394
+ accessibilityLanguage?: string | undefined;
395
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
396
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
397
+ accessible?: boolean | undefined;
398
+ accessibilityLabel?: string | undefined;
399
+ accessibilityHint?: string | undefined;
400
+ "aria-label"?: string | undefined;
401
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
402
+ role?: import("react-native").Role | undefined;
403
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
404
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
405
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
406
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
407
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
408
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
409
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
410
+ "aria-busy"?: boolean | undefined;
411
+ "aria-checked"?: (boolean | undefined) | "mixed";
412
+ "aria-disabled"?: boolean | undefined;
413
+ "aria-expanded"?: boolean | undefined;
414
+ "aria-selected"?: boolean | undefined;
415
+ "aria-hidden"?: boolean | undefined;
416
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
417
+ children?: React.ReactNode;
418
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
419
+ collapsable?: boolean | undefined;
420
+ collapsableChildren?: boolean | undefined;
421
+ id?: string;
422
+ testID?: string | undefined;
423
+ nativeID?: string | undefined;
424
+ needsOffscreenAlphaCompositing?: boolean | undefined;
425
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
426
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
427
+ removeClippedSubviews?: boolean | undefined;
428
+ experimental_accessibilityOrder?: Array<string> | undefined;
429
+ }>, never>>, "ref"> & {
430
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Components/View/ViewNativeComponent").default>>;
431
+ }, "ref"> & {
432
+ asChild?: boolean;
433
+ } & {
434
+ className?: string;
435
+ } & React.RefAttributes<import("react-native/types_generated/src/private/types/HostInstance").LegacyHostInstanceMethods>>;
436
+ /**
437
+ * CardDescription - Subtitle or description text for the card
438
+ *
439
+ * Automatically styles child Text components with muted, smaller typography.
440
+ * Uses TextClassContext to apply consistent styling to nested Text elements.
441
+ *
442
+ * @property {boolean} [asChild] - When true, merges props into immediate child
443
+ * @property {string} [className] - Additional Tailwind classes for text styling
444
+ */
445
+ declare const CardDescription: React.ForwardRefExoticComponent<Omit<Omit<Readonly<Omit<Readonly<{
446
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
447
+ onAccessibilityTap?: (() => unknown) | undefined;
448
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
449
+ onMagicTap?: (() => unknown) | undefined;
450
+ onAccessibilityEscape?: (() => unknown) | undefined;
451
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
452
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
453
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
454
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
455
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
456
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
457
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
458
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
459
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
460
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
461
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
462
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
463
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
464
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
465
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
466
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
467
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
468
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
469
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
470
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
471
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
472
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
473
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
474
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
475
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
476
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
477
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
478
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
479
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
480
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
481
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
482
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
483
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
484
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
485
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
486
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
487
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
488
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
489
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
490
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
491
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
492
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
493
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
494
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
495
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
496
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
497
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
498
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
499
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
500
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
501
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
502
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
503
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
504
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
505
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
506
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
507
+ renderToHardwareTextureAndroid?: boolean | undefined;
508
+ hasTVPreferredFocus?: boolean | undefined;
509
+ nextFocusDown?: number | undefined;
510
+ nextFocusForward?: number | undefined;
511
+ nextFocusLeft?: number | undefined;
512
+ nextFocusRight?: number | undefined;
513
+ nextFocusUp?: number | undefined;
514
+ focusable?: boolean | undefined;
515
+ tabIndex?: 0 | -1;
516
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
517
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
518
+ shouldRasterizeIOS?: boolean | undefined;
519
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
520
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
521
+ "aria-labelledby"?: string | undefined;
522
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
523
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
524
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
525
+ screenReaderFocusable?: boolean;
526
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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<{
527
+ accessibilityIgnoresInvertColors?: boolean | undefined;
528
+ accessibilityViewIsModal?: boolean | undefined;
529
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
530
+ accessibilityLargeContentTitle?: string | undefined;
531
+ "aria-modal"?: boolean | undefined;
532
+ accessibilityElementsHidden?: boolean | undefined;
533
+ accessibilityLanguage?: string | undefined;
534
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
535
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
536
+ accessible?: boolean | undefined;
537
+ accessibilityLabel?: string | undefined;
538
+ accessibilityHint?: string | undefined;
539
+ "aria-label"?: string | undefined;
540
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
541
+ role?: import("react-native").Role | undefined;
542
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
543
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
544
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
545
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
546
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
547
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
548
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
549
+ "aria-busy"?: boolean | undefined;
550
+ "aria-checked"?: (boolean | undefined) | "mixed";
551
+ "aria-disabled"?: boolean | undefined;
552
+ "aria-expanded"?: boolean | undefined;
553
+ "aria-selected"?: boolean | undefined;
554
+ "aria-hidden"?: boolean | undefined;
555
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
556
+ children?: React.ReactNode;
557
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
558
+ collapsable?: boolean | undefined;
559
+ collapsableChildren?: boolean | undefined;
560
+ id?: string;
561
+ testID?: string | undefined;
562
+ nativeID?: string | undefined;
563
+ needsOffscreenAlphaCompositing?: boolean | undefined;
564
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
565
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
566
+ removeClippedSubviews?: boolean | undefined;
567
+ experimental_accessibilityOrder?: Array<string> | undefined;
568
+ }>, never>>, "ref"> & {
569
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Components/View/ViewNativeComponent").default>>;
570
+ }, "ref"> & {
571
+ asChild?: boolean;
572
+ } & {
573
+ className?: string;
574
+ } & React.RefAttributes<import("react-native/types_generated/src/private/types/HostInstance").LegacyHostInstanceMethods>>;
575
+ /**
576
+ * CardContent - Main content area of the card
577
+ *
578
+ * Container for the primary card content with appropriate padding.
579
+ * Top padding is removed to flow naturally after CardHeader.
580
+ *
581
+ * @property {boolean} [asChild] - When true, merges props into immediate child
582
+ * @property {string} [className] - Additional Tailwind classes
583
+ */
584
+ declare const CardContent: React.ForwardRefExoticComponent<Omit<Omit<Readonly<Omit<Readonly<{
585
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
586
+ onAccessibilityTap?: (() => unknown) | undefined;
587
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
588
+ onMagicTap?: (() => unknown) | undefined;
589
+ onAccessibilityEscape?: (() => unknown) | undefined;
590
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
591
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
592
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
593
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
594
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
595
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
596
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
597
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
598
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
599
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
600
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
601
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
602
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
603
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
604
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
605
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
606
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
607
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
608
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
609
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
610
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
611
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
612
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
613
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
614
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
615
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
616
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
617
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
618
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
619
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
620
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
621
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
622
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
623
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
624
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
625
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
626
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
627
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
628
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
629
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
630
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
631
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
632
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
633
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
634
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
635
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
636
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
637
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
638
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
639
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
640
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
641
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
642
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
643
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
644
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
645
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
646
+ renderToHardwareTextureAndroid?: boolean | undefined;
647
+ hasTVPreferredFocus?: boolean | undefined;
648
+ nextFocusDown?: number | undefined;
649
+ nextFocusForward?: number | undefined;
650
+ nextFocusLeft?: number | undefined;
651
+ nextFocusRight?: number | undefined;
652
+ nextFocusUp?: number | undefined;
653
+ focusable?: boolean | undefined;
654
+ tabIndex?: 0 | -1;
655
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
656
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
657
+ shouldRasterizeIOS?: boolean | undefined;
658
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
659
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
660
+ "aria-labelledby"?: string | undefined;
661
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
662
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
663
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
664
+ screenReaderFocusable?: boolean;
665
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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<{
666
+ accessibilityIgnoresInvertColors?: boolean | undefined;
667
+ accessibilityViewIsModal?: boolean | undefined;
668
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
669
+ accessibilityLargeContentTitle?: string | undefined;
670
+ "aria-modal"?: boolean | undefined;
671
+ accessibilityElementsHidden?: boolean | undefined;
672
+ accessibilityLanguage?: string | undefined;
673
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
674
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
675
+ accessible?: boolean | undefined;
676
+ accessibilityLabel?: string | undefined;
677
+ accessibilityHint?: string | undefined;
678
+ "aria-label"?: string | undefined;
679
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
680
+ role?: import("react-native").Role | undefined;
681
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
682
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
683
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
684
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
685
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
686
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
687
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
688
+ "aria-busy"?: boolean | undefined;
689
+ "aria-checked"?: (boolean | undefined) | "mixed";
690
+ "aria-disabled"?: boolean | undefined;
691
+ "aria-expanded"?: boolean | undefined;
692
+ "aria-selected"?: boolean | undefined;
693
+ "aria-hidden"?: boolean | undefined;
694
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
695
+ children?: React.ReactNode;
696
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
697
+ collapsable?: boolean | undefined;
698
+ collapsableChildren?: boolean | undefined;
699
+ id?: string;
700
+ testID?: string | undefined;
701
+ nativeID?: string | undefined;
702
+ needsOffscreenAlphaCompositing?: boolean | undefined;
703
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
704
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
705
+ removeClippedSubviews?: boolean | undefined;
706
+ experimental_accessibilityOrder?: Array<string> | undefined;
707
+ }>, never>>, "ref"> & {
708
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Components/View/ViewNativeComponent").default>>;
709
+ }, "ref"> & {
710
+ asChild?: boolean;
711
+ } & {
712
+ className?: string;
713
+ } & React.RefAttributes<import("react-native/types_generated/src/private/types/HostInstance").LegacyHostInstanceMethods>>;
714
+ /**
715
+ * CardFooter - Footer area for actions or additional info
716
+ *
717
+ * Typically contains buttons or other interactive elements.
718
+ * Arranged as a row with centered items.
719
+ *
720
+ * @property {boolean} [asChild] - When true, merges props into immediate child
721
+ * @property {string} [className] - Additional Tailwind classes
722
+ */
723
+ declare const CardFooter: React.ForwardRefExoticComponent<Omit<Omit<Readonly<Omit<Readonly<{
724
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
725
+ onAccessibilityTap?: (() => unknown) | undefined;
726
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
727
+ onMagicTap?: (() => unknown) | undefined;
728
+ onAccessibilityEscape?: (() => unknown) | undefined;
729
+ }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
730
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
731
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
732
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
733
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
734
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
735
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
736
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
737
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
738
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
739
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
740
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
741
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
742
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onMouseEnter" | "onMouseLeave" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
743
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
744
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
745
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onPointerEnter" | "onPointerLeave" | "onPointerMove" | "onClick" | "onClickCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
746
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
747
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
748
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
749
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
750
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
751
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
752
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
753
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
754
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
755
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
756
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
757
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
758
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
759
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
760
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
761
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
762
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
763
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
764
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
765
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
766
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
767
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
768
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
769
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
770
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
771
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
772
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
773
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
774
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
775
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
776
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
777
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
778
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
779
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
780
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
781
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
782
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
783
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
784
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
785
+ renderToHardwareTextureAndroid?: boolean | undefined;
786
+ hasTVPreferredFocus?: boolean | undefined;
787
+ nextFocusDown?: number | undefined;
788
+ nextFocusForward?: number | undefined;
789
+ nextFocusLeft?: number | undefined;
790
+ nextFocusRight?: number | undefined;
791
+ nextFocusUp?: number | undefined;
792
+ focusable?: boolean | undefined;
793
+ tabIndex?: 0 | -1;
794
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
795
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
796
+ shouldRasterizeIOS?: boolean | undefined;
797
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "accessibilityLabel" | "accessible" | "testID" | "style" | "nativeID" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
798
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
799
+ "aria-labelledby"?: string | undefined;
800
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
801
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
802
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
803
+ screenReaderFocusable?: boolean;
804
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "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<{
805
+ accessibilityIgnoresInvertColors?: boolean | undefined;
806
+ accessibilityViewIsModal?: boolean | undefined;
807
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
808
+ accessibilityLargeContentTitle?: string | undefined;
809
+ "aria-modal"?: boolean | undefined;
810
+ accessibilityElementsHidden?: boolean | undefined;
811
+ accessibilityLanguage?: string | undefined;
812
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
813
+ }>, "accessibilityLabel" | "accessible" | "role" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
814
+ accessible?: boolean | undefined;
815
+ accessibilityLabel?: string | undefined;
816
+ accessibilityHint?: string | undefined;
817
+ "aria-label"?: string | undefined;
818
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
819
+ role?: import("react-native").Role | undefined;
820
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
821
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
822
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
823
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
824
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
825
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
826
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
827
+ "aria-busy"?: boolean | undefined;
828
+ "aria-checked"?: (boolean | undefined) | "mixed";
829
+ "aria-disabled"?: boolean | undefined;
830
+ "aria-expanded"?: boolean | undefined;
831
+ "aria-selected"?: boolean | undefined;
832
+ "aria-hidden"?: boolean | undefined;
833
+ }>, "pointerEvents" | "hitSlop" | "children" | "id" | "testID" | "style" | "nativeID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
834
+ children?: React.ReactNode;
835
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
836
+ collapsable?: boolean | undefined;
837
+ collapsableChildren?: boolean | undefined;
838
+ id?: string;
839
+ testID?: string | undefined;
840
+ nativeID?: string | undefined;
841
+ needsOffscreenAlphaCompositing?: boolean | undefined;
842
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
843
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
844
+ removeClippedSubviews?: boolean | undefined;
845
+ experimental_accessibilityOrder?: Array<string> | undefined;
846
+ }>, never>>, "ref"> & {
847
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Components/View/ViewNativeComponent").default>>;
848
+ }, "ref"> & {
849
+ asChild?: boolean;
850
+ } & {
851
+ className?: string;
852
+ } & React.RefAttributes<import("react-native/types_generated/src/private/types/HostInstance").LegacyHostInstanceMethods>>;
853
+ export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, };
854
+ //# sourceMappingURL=Card.d.ts.map