import { ImgHTMLAttributes } from 'react';
import './image.style.scss';
export interface ImageProps extends ImgHTMLAttributes {
/**
* Sets the object fit of component
*/
fit?: 'fill' | 'contain' | 'cover' | 'none' | 'scale-down';
/**
* Sets the loading of component
*/
loading?: 'lazy' | 'eager';
}
export declare const Image: import("react").MemoExoticComponent<(props: ImageProps) => import("react/jsx-runtime").JSX.Element>;