import { PureComponent } from 'react'; interface AnimatedProps { icon: any; color: string; isTop: boolean; isHorization: boolean; onPress: any; } interface AnimatedState { spinValue0: any; spinValue1: any; spinValue2: any; } export default class Animateds extends PureComponent { constructor(props: AnimatedProps); componentDidMount(): void; componentWillUnmount(): void; getSpin: () => any; spin: () => void; startSpin: (d: number) => void; stopAnimation(): void; render(): JSX.Element; } export {};