/// import { ObjectFitProperty, Globals } from "csstype"; import { ViewProps } from "../View"; type AspectRatioProperty = Globals | "auto" | string; export interface ImageProps extends ViewProps { src?: string; width?: ViewProps["width"]; height?: ViewProps["height"]; aspectRatio?: AspectRatioProperty | AspectRatioProperty[]; objectFit?: ObjectFitProperty; borderRadius?: ViewProps["borderRadius"]; alt: string; loading?: "lazy" | "eager"; appearance?: "default" | "stack"; iconSize?: number | number[]; } declare const Image: ({ src, width, height, aspectRatio, objectFit, borderRadius, alt, loading, appearance, iconSize, ...props }: ImageProps) => JSX.Element; export default Image;