import { DetailedHTMLProps, ImgHTMLAttributes } from "react";
interface Img extends DetailedHTMLProps, HTMLImageElement> {
width?: string;
src?: any;
alt?: string;
link?: boolean;
format?: "webp" | "png" | "aviff";
q?: number;
}
declare function Img({ width, alt, src, q, link, format, ...props }: Img): JSX.Element;
export default Img;