import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { WithThemeStyles } from '../style'; import { CardStyle } from './style'; export interface CardFooterPropsType { content?: React.ReactNode; extra?: React.ReactNode; } export interface CardFooterProps extends CardFooterPropsType, WithThemeStyles> { style?: StyleProp; } export default class CardFooter extends React.Component { static defaultProps: { style: {}; }; render(): React.JSX.Element; }