import * as react from 'react'; import { ImageStyle, Image as Image$1 } from 'react-native'; import { RadiusKey } from '@plyxui/core'; type ImageFit = "cover" | "contain" | "stretch" | "center"; interface ImageProps { src: string; alt: string; width?: number; height?: number; aspectRatio?: number; fit?: ImageFit; radius?: RadiusKey | number; placeholder?: React.ReactNode; fallback?: React.ReactNode; style?: ImageStyle; } declare const Image: react.ForwardRefExoticComponent>; export { Image, type ImageFit, type ImageProps };