///
import { ImageBlockProps } from '@10up/headless-core/react';
/**
* An implementation of the ImageBlock (core/image).
*
* If `width`, `height` or `src` are not provided, this component will not be used.
*
* ## Usage
*
* ```tsx
* import { BlocksRenderer, ImageBlock } from "@10up/headless-core/react";
* import { ImageComponent } from "@10up/headless-next";
*
*
*
*
* ```
*
* @param props {@link ImageBlockProps}
*
* @category React Components
*/
export declare function ImageComponent({ src, alt, width, height, children, style }: ImageBlockProps): JSX.Element;