import React from 'react'; import { type ImageStyle, type StyleProp, type ViewStyle } from 'react-native'; interface ImageCacheComponentProps { sourceUrl: string; placeholderImage: any; activityIndicatorStyle?: StyleProp; activityIndicatorSize?: number | 'small' | 'large'; activityIndicatorColor?: string; imageStyle?: StyleProp; resizeMode?: 'cover' | 'contain' | 'stretch' | 'repeat' | 'center'; } declare const ImageCacheComponent: React.FC; export default ImageCacheComponent; //# sourceMappingURL=index.d.ts.map