import * as React from "react"; import { Text, type TextProps, View, type ViewProps } from "react-native"; import { cn } from "../../lib/utils"; import { TextClassContext } from "./text"; function Card({ className, ...props }: ViewProps & { ref?: React.RefObject; }) { return ( ); } function CardHeader({ className, ...props }: ViewProps & { ref?: React.RefObject; }) { return ( ); } function CardTitle({ className, ...props }: TextProps & { ref?: React.RefObject; }) { return ( ); } function CardDescription({ className, ...props }: TextProps & { ref?: React.RefObject; }) { return ( ); } function CardContent({ className, ...props }: ViewProps & { ref?: React.RefObject; }) { return ( ); } function CardFooter({ className, ...props }: ViewProps & { ref?: React.RefObject; }) { return ( ); } export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, };