import React from 'react'; import { BoxProps } from '../Box'; export interface ImgProps extends BoxProps<'img'> { /** The image URL */ src: string; /** The fallback text of the image */ alt: string; /** The native width of the image. Differs from `width` which is tied to the theme */ nativeWidth?: number | string; /** The native height of the image. Differs from `height` which is tied to the theme */ nativeHeight?: number | string; } /** * Extends Box * * Simple Img component for whenever you want to add an image to your app */ export declare const Img: React.ForwardRefExoticComponent & React.RefAttributes>; export default Img;