/// import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { CardFooterPropsType } from './PropsType'; export interface CardFooterProps extends CardFooterPropsType { styles?: any; style?: StyleProp; } export default class CardFooter extends React.Component { static defaultProps: { style: {}; }; render(): JSX.Element; }