import React, { Component } from 'react'; interface Props { children: React.ReactNode; style?: Object; } interface States { rotateAnimated: any; } declare class Rotate extends Component { constructor(props: Props); componentDidMount(): void; fadeStart: () => void; render(): React.ReactNode; } export default Rotate;