import * as React from 'react'; import { Animated } from 'react-native'; interface LoadingViewState { rotateValue: Animated.Value; } interface LoadingViewProps { } declare class LoadingView extends React.Component { constructor(props: LoadingViewProps); componentDidMount(): void; startAnimation(): void; render(): React.JSX.Element; } export default LoadingView;