import * as React from 'react'; import { Text, TextProps, View, ViewProps } from 'react-native'; import { TextClassContext } from '../ui/text'; import { cn } from '../../lib/utils'; 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, };