import type { ImgHTMLAttributes, Ref } from 'react'; import type { ForwardRefForwardPropsComponent } from '../../types'; export interface ImageProps extends ImgHTMLAttributes { /** The HTML alt attribute for the image. */ alt: string; /** Ref for the wrapping element. */ ref?: Ref; } export declare const StyledImage: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLImageElement>, never>> & string; declare const Image: ForwardRefForwardPropsComponent; export default Image; //# sourceMappingURL=Image.d.ts.map