import { ImgHTMLAttributes, type CSSProperties } from 'react';
export interface ImageProps extends Omit, 'children'> {
/** If provided, sets the CSS height of the image */
feHeight?: CSSProperties['height'];
/** If provided, sets how the content of a replaced element should be resized to fit its container */
feObjectFit?: CSSProperties['objectFit'];
/** If provided, specifies the alignment of the element's contents within the element's box */
feObjectPosition?: CSSProperties['objectPosition'];
/** If true, the image fills the parent element */
feStretch?: boolean;
/** If provided, sets the CSS width of the image */
feWidth?: CSSProperties['width'];
/** The image source URL */
src: string;
}
/**
* The `` component embeds an image into the document.
* It extends the interface of native html `
` element.
*
* See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img) for further information about the element and related attributes.
*/
declare const Image: import("react").ForwardRefExoticComponent>;
export default Image;