import React from 'react'; import { ImageStyle, StyleProp, ViewStyle } from 'react-native'; import { WithThemeStyles } from '../style'; import { CardStyle } from './style'; export interface CardHeaderPropsType extends WithThemeStyles> { title?: React.ReactNode; /** need url of img, if this is string. */ thumb?: React.ReactNode; extra?: React.ReactNode; } export interface CardHeaderProps extends CardHeaderPropsType { style?: StyleProp; thumbStyle?: StyleProp; } export default class CardHeader extends React.Component { static defaultProps: { thumbStyle: {}; style: {}; }; render(): React.JSX.Element; }