import * as React from 'react'; export interface CardPropsType { full?: boolean; title?: string; titleExtra?: string; titleStyle?: React.CSSProperties; thumb?: React.ReactNode; thumbStyle?: React.CSSProperties; headerStyle?: React.CSSProperties; body?: React.ReactNode; bodyStyle?: React.CSSProperties; footer?: string; footerExtra?: string; footerStyle?: React.CSSProperties; showHeadLine?: boolean; showSeparatorLine?: boolean; bgImg?: string; subTitle?: string; subStyle?: React.CSSProperties; borderStyle?: string; } export interface CardHeaderPropsType { title?: React.ReactNode; thumb?: React.ReactNode; extra?: React.ReactNode; content?: React.ReactNode; } export interface CardFooterPropsType { content?: React.ReactNode; extra?: React.ReactNode; }