import { Props as SpaceProps } from '../space'; import React from 'react'; export interface Props extends SpaceProps { /** * 背景色 */ backgroundColor?: string; /** * 文字 */ title: React.ReactNode; /** * 子标题 */ subtitle?: React.ReactNode; /** * 图片 */ image?: string; /** * 大小 */ size?: 'large' | 'small'; /** * 白色文字 */ light?: boolean; /** * 标签 */ tag?: React.ReactNode; } declare const _default: ({ title, subtitle, backgroundColor, image, style, light, size, tag, vertical, ...props }: Props) => React.JSX.Element; export default _default;