import React from 'react'; import { StyleProp, ViewStyle, View } from 'react-native'; type Props = React.ComponentPropsWithRef & { children?: React.ReactNode; style?: StyleProp; }; declare const CardContent: ({ children, style, ...rest }: Props) => React.JSX.Element; export default CardContent; //# sourceMappingURL=CardContent.d.ts.map