/// import { ColorProps, BorderProps, SpaceProps, LayoutProps } from 'styled-system'; declare type ImageProps = ColorProps & BorderProps & SpaceProps & LayoutProps & { source?: { uri: string; }; style?: any; resizeMode?: any; src?: string; boxShadow?: (_: {}) => string | string; as?: string; }; declare const ImageContainer: { ({ as: asElement, boxShadow, src, source, ...props }: ImageProps): JSX.Element; defaultProps: { src: undefined; }; }; export default ImageContainer;