/// <reference types="react" />
import { Props } from './index';
import { ThemeInterface } from "../../../Common/theming/types";
export declare const imageStyle: ({imageSize}: Props) => (string | number)[];
export declare const Img: React.ComponentClass<React.HTMLProps<HTMLImageElement> & Props & {
    theme?: ThemeInterface;
    innerRef?: (instance: any) => void;
}>;
