import type { ImageProps } from 'antd';
import { Ref } from 'react';
import type { ImgProps as HtmlImgeProps } from "../types";
type ImgProps = HtmlImgeProps & ImageProps & {
    ref?: Ref<HTMLImageElement>;
    unoptimized?: boolean;
};
declare const Img: import("react").NamedExoticComponent<ImgProps>;
export default Img;
