import React from 'react'; import { ImageProps, TouchableOpacityProps, ActivityIndicatorProps } from 'react-native'; export type Props = ImageProps & { src: string | null | undefined; isBorder?: boolean; showImageError?: boolean; blurUrl?: string | null | undefined; source?: undefined; isTouchableOpacity?: boolean; touchableOpacityProps?: TouchableOpacityProps; activityIndicatorProps?: ActivityIndicatorProps; isActivityIndicator?: boolean; onPress?: () => void; onLongPress?: () => void; }; declare const Image: ({ style, src, isTouchableOpacity, touchableOpacityProps, activityIndicatorProps, isActivityIndicator, isBorder, showImageError, onPress, onLongPress, blurUrl, ...otherProps }: Props) => React.JSX.Element; export default Image; //# sourceMappingURL=Image.d.ts.map