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