import type { ImageProps as AntdImageProps } from 'rc-image'; import { FC } from 'react'; import './index.less'; export interface ImageProps extends AntdImageProps { size?: number; } export declare const Image: FC; export default Image;