/** * This source code is quoted from rc-animate. * homepage: https://github.com/react-component/animate */ import { Component } from 'react'; import { AnimateChildProps } from './iAnimate'; declare class AnimateChild extends Component { private stopper; constructor(props: AnimateChildProps); componentWillUnmount(): void; componentWillEnter(done: () => void): void; componentWillAppear(done: () => void): void; componentWillLeave(done: () => void): void; transition(animationType: string, finishCallback: () => void): void; stop(): void; render(): any; } export default AnimateChild;