import { ViewProps, StyleProp, ViewStyle } from 'react-native'; import { ReactNode } from 'react'; export interface CardProps extends ViewProps { children: ReactNode; style?: StyleProp; backgroundColor?: string; shadowColor?: string; borderRadius?: number; } //# sourceMappingURL=Card.types.d.ts.map