import React, { ImgHTMLAttributes } from 'react';
import * as CSS from 'csstype';
import { BorderRadius } from '../../themes/types';
type CssProps = Pick;
export type ImageProps = {
testID?: string;
borderRadius?: BorderRadius;
} & ImgHTMLAttributes & CssProps;
declare const Image: ({ alt, borderRadius, height, src, testID, width, minHeight, minWidth, objectFit, }: ImageProps) => React.JSX.Element;
export default Image;