import type { ReactElement } from 'react'; import type { ImageProps as RNImageProps } from 'react-native'; export interface ImageProps extends RNImageProps { /** * Whether the image is rounded. */ rounded?: boolean; /** * Image sizes, following the same sizes as the `sizes` global theme. */ size?: '6xlarge' | '15xlarge'; /** * Testing id of the component. */ testID?: string; } /** * @deprecated Image component will soon be deprecated. Please use `Image` from `react-native` instead. */ declare const Image: ({ rounded, size, testID, style, ...imageNativeProps }: ImageProps) => ReactElement; export default Image;