import { ImageProps } from "react-native"; type IOAspectRatioScale = "1:1" | "4:3" | "16:9" | "3:4" | "21:9"; type IOImageProps = { imageProps: Omit; alt: string; aspectRatio?: IOAspectRatioScale; }; /** * Image component that supports specific aspect ratio scales and sets alt text as mandatory. * @param imageProps * @param alt * @param aspectRatio */ export declare const IOImage: ({ imageProps, alt, aspectRatio }: IOImageProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Image.d.ts.map