/// import type { BoxItemProps } from '../BoxItem'; export type ImagePropTypes = { src: BoxItemProps['imageSrc']; shape: BoxItemProps['imageShapeType']; ratio: BoxItemProps['imageRatio']; width: BoxItemProps['imageWidth']; scaleType: BoxItemProps['imageScaleType']; }; declare const Image: React.FC; export default Image;