import { PlaceholderValue, OnLoadingComplete } from "next/dist/shared/lib/get-img-props"; import Image, { ImageLoader } from "next/image"; import { JSX, DetailedHTMLProps, ImgHTMLAttributes, RefAttributes } from "react"; export default function Logo( props: JSX.IntrinsicAttributes & Omit< DetailedHTMLProps, HTMLImageElement>, "ref" | "height" | "width" | "loading" | "srcSet" > & { width?: number | `${number}`; height?: number | `${number}`; fill?: boolean; loader?: ImageLoader; quality?: number | `${number}`; priority?: boolean; loading?: "eager" | "lazy"; placeholder?: PlaceholderValue; blurDataURL?: string; unoptimized?: boolean; overrideSrc?: string; onLoadingComplete?: OnLoadingComplete; layout?: string; objectFit?: string; objectPosition?: string; lazyBoundary?: string; lazyRoot?: string; } & RefAttributes ) { return ( Test logo ); }