import type { SxProps, Theme } from "@vertigis/react-ui/styles"; import type { FC, ImgHTMLAttributes } from "react"; /** * Properties for the `Image` component. */ export interface ImageProps extends ImgHTMLAttributes { /** * Style overrides. */ sx?: SxProps; } declare const Image: FC; export default Image;