import { View, Text, ViewProps, TextProps } from "react-native"; export function Card({ style, ...props }: ViewProps) { return ; } export function CardHeader({ style, ...props }: ViewProps) { return ; } export function CardTitle({ style, ...props }: TextProps) { return ; } export function CardContent(props: ViewProps) { return ; }