import React from 'react'; import { MinervaProps } from '../layout'; export interface ImageProps extends MinervaProps { /** * Path or URL to image source */ src?: string; /** * Alternate text that describes image for screen reader users */ alt?: string; } export declare const Image: React.ForwardRefExoticComponent & React.RefAttributes>; export default Image;