import { RefAttributes, Ref } from "react"; import { DOMProps } from "@react-types/shared"; import { ForwardedRefComponent } from "../../types/components"; export declare type IntrinsicImage = Omit & RefAttributes; export interface ImageProps extends DOMProps, IntrinsicImage { /** HTML element for the Box */ elementType?: React.ElementType; /** Alternative text for accessibility */ alt: string; /** Path to image asset */ src: string; /** Custom class name for setting specific CSS */ className?: string; } export declare type ImageRef = Ref; declare const Image: ForwardedRefComponent; export { Image };