import React, { type ReactNode } from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; interface Props { children: ReactNode; color?: string; onPress?: () => void; styles?: StyleProp; shadowed?: boolean; } declare const Card: (props: Props) => React.JSX.Element; export default Card; //# sourceMappingURL=Card.d.ts.map