import { RecursivePartial } from '../typings'; import { IImage } from '../blocks'; import { MjmlBlockProps } from '../components/MjmlBlock'; export declare type ImageProps = RecursivePartial & RecursivePartial & { children?: MjmlBlockProps['children']; }; export declare function Image(props: ImageProps): JSX.Element;