import React from 'react'; import { NativeSyntheticEvent } from 'react-native'; import { ImageErrorEventData, ImageLoadEventData, ImageNativeProps, ImageProgressEventData } from './Image.types'; declare class ExpoImage extends React.PureComponent { startAnimating: () => Promise | unknown; stopAnimating: () => Promise | unknown; lockResourceAsync: () => Promise; unlockResourceAsync: () => Promise; reloadAsync: () => Promise; onLoadStart: () => void; onLoad: (event: NativeSyntheticEvent) => void; onProgress: (event: NativeSyntheticEvent) => void; onError: (event: NativeSyntheticEvent) => void; onLoadEnd: () => void; render(): React.JSX.Element; } export default ExpoImage; //# sourceMappingURL=ExpoImage.d.ts.map