import React from 'react'; import { Props as SpaceProps } from '../space'; interface Props extends SpaceProps { /** * 图片 */ img?: string; /** * 图片类名 */ imgCls?: string; /** * 图片下面的部分 */ imgFooter?: React.ReactNode; /** * 图片下面的部分的类名 */ imgFooterCls?: string; /** * 左边SpaceProps */ leftSpaceProps?: SpaceProps; /** * 右边SpaceProps */ rightSpaceProps?: SpaceProps; /** * title类名 */ titleCls?: string; /** * 右边文字第一行 */ title?: React.ReactNode; /** * subtitle类名 */ subtitleCls?: string; /** * title里的小文字 */ subtitle?: React.ReactNode; /** * text类名 */ textCls?: string; /** * text,右边文字第二行 */ text?: React.ReactNode; /** * footer类名 */ footerCls?: string; /** * 右边文字最后一行 */ footer?: React.ReactNode; /** * 最右边的地方 */ after?: React.ReactNode; /** * 最右边的地方的类名 */ afterCls?: React.ReactNode; } declare const _default: ({ img, className, leftSpaceProps, rightSpaceProps, text, title, textCls, titleCls, footer, footerCls, subtitle, subtitleCls, imgFooter, imgCls, imgFooterCls, after, afterCls, ...props }: Props) => React.JSX.Element; export default _default;