import React from 'react'; import './index.scss'; interface ImageStyle { widthHeightVisible: boolean; width: string; height: string; backgroundColor: string; } type dynamicType = 'appIcon'; export interface ImageProps { url: string; title: string; alt: string; style: ImageStyle; styles: ImageStyle; position: 'fill' | 'contain' | 'cover' | 'none'; inline: boolean; dynamic: boolean; dynamicType: dynamicType; } declare const Image: React.FC; export default Image;