import React from 'react'; import { ImageStyle, StyleProp } from 'react-native'; declare type resizeMode = 'center' | 'centerCrop' | 'centerInside' | 'fitCenter' | 'fitEnd' | 'fitStart' | 'fitXY' | 'start'; interface props { source: string; loading?: boolean; resizeMode?: resizeMode; style?: StyleProp; onCacheHit?: Function; onCacheMiss?: Function; onStart?: Function; onProgress?: Function; onFinish?: Function; onSuccess?: Function; onFail?: Function; } declare const BannerView: React.ForwardRefExoticComponent>; export default BannerView;