import { FC } from 'react'; import './index.scss'; export interface ColorfulEmptyProps { /** * 图像尺寸 */ size?: 'sm' | 'md' | 'lg'; /** * 图像地址 */ imgUrl?: string; /** * 图像标题 */ title?: string; /** * 图像描述 */ des?: string; } declare const ColorfulEmpty: FC; export default ColorfulEmpty;