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