///
import React, { Component } from 'react';
import { AnimateChildPropTypes } from './PropsType';
export default class AnimateChild extends Component {
static defaultProps: {
transitionName: string;
};
stopper: any;
componentWillUnmount(): void;
componentWillEnter(done: any): void;
componentWillAppear(done: any): void;
componentWillLeave(done: any): void;
transition(animationType: any, finishCallback: any): void;
stop(): void;
render(): React.ReactElement;
}