import * as React from 'react'; declare class Animate extends React.Component { constructor(props: any); static propTypes: { animationEnter: React.Validator; animationLeave: React.Validator; durationEnter: React.Validator; durationLeave: React.Validator; }; renderStyle: (animationEnter: string, animationLeave: string, durationEnter: number, durationLeave: number) => string; render(): JSX.Element; } export default Animate;