/// <reference types="react" />
interface ImageBlockProps {
    id: string;
    properties: any;
    format: any;
    imageSource: (url: string) => string;
}
declare const ImageBlock: (props: ImageBlockProps) => JSX.Element;
export default ImageBlock;
