import { ImageProps } from '@tarojs/components'; import { FC } from 'react'; export interface BaseImageProps extends ImageProps { width?: number | string; height?: number | string; isSquare?: boolean; isRound?: boolean; isBgBlur?: boolean; isPreview?: boolean; radius?: number | string; loadIcon?: string; loadErrIcon?: string; loadIconClass?: string; } declare const YgImage: FC; export default YgImage;