import * as react from 'react'; import { ReactNode } from 'react'; import { ViewStyle, View } from 'react-native'; type CardVariant = "outline" | "raised" | "sunken"; type CardPadding = "none" | "sm" | "md" | "lg"; type CardRadius = "sm" | "md" | "lg" | "xl"; interface CardProps { variant?: CardVariant; padding?: CardPadding; radius?: CardRadius; interactive?: boolean; onPress?: () => void; style?: ViewStyle; children?: ReactNode; } declare const Card: react.ForwardRefExoticComponent>; export { Card, type CardPadding, type CardProps, type CardRadius, type CardVariant };