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