import React from 'react'; import type { ImageProps as AntdImageProps } from 'antd'; export interface ImageProps extends Omit { /** * 占位图类型 */ fallbackType?: 'image' | 'avatar' | 'product'; } declare const Image: React.FC; export default Image;