import React from 'react'; import { ExtendedFlexComponent, ExtendedFlexProps } from '../types'; type Props = { /** * The source of the image */ readonly src: string; }; type ImageProps = ExtendedFlexProps; type ImageComponent = ExtendedFlexComponent; export { ImageComponent, ImageProps };