export type { ImageProps } from './props'; /** 适应容器的方式 */ export type ImageFit = 'fill' | 'contain' | 'cover' | 'none' | 'scale-down';