import { ImageSizeParameters, Image as SitecoreImage } from "@sitecore-jss/sitecore-jss-react"; import { ComponentProps } from "react"; type ISitecoreImage = ComponentProps; export interface IProps extends Omit { src: ISitecoreImage['field'] | string; alt?: string; srcSet?: string | ImageSizeParameters[]; } declare const Image: ({ src, alt, srcSet: htmlSrcSet, ...rest }: IProps) => import("react/jsx-runtime").JSX.Element; export default Image;