import React, { ImgHTMLAttributes } from 'react';
import { Options } from 'resizin';
declare type RenderImageFnc = (url: string) => any;
export interface ImageProps extends ImgHTMLAttributes {
imgId: string;
options?: Options;
innerRef?: React.Ref;
children?: RenderImageFnc | null;
}
/**
* @example ../../docs/ImageComponent.md
*/
declare const Image: React.FunctionComponent;
export default Image;