/// <reference types="react" />
import { StyleProps } from '../@declares';
declare namespace Img {
    type Input = StyleProps.BasicElement & {
        src: string;
        alt?: string;
        showExpand?: boolean | string;
    } & React.HTMLAttributes<HTMLImageElement>;
}
declare const Img: React.FC<Img.Input>;
export { Img, Img as default };
