import { LayoutProps, PositionProps, SpaceProps, Theme } from 'styled-system'; import { ImgHTMLAttributes } from 'react'; import { SpacingTypes } from '../../theme/Spacing'; export interface ImageProps extends SpaceProps, LayoutProps, PositionProps, Omit, 'width' | 'height'> { } declare const Image: ({ ...props }: ImageProps) => JSX.Element; export default Image;