import React, { FC } from "react"; import { XHComponentCommonProps } from "../../types"; export declare type ImageProps = { width?: number; height?: number; src: string; alt?: string; style?: React.CSSProperties; dataTrackId?: string; } & XHComponentCommonProps; declare const XHImage: FC; export default XHImage;