import React from 'react'; import { ComponentProps } from '../../utils/types'; interface MarkdownImagePropsBase { alt?: string; src?: string; title?: string; } type MarkdownImageProps = ComponentProps; declare function MarkdownImage({ src, title, alt, ...otherProps }: MarkdownImageProps): React.JSX.Element; export default MarkdownImage;