export default BounceAnimation; /** Bounce Animation*/ declare class BounceAnimation extends React.PureComponent { constructor(props: any); state: { animationSize: undefined; }; rootRef: React.RefObject; componentDidMount(): void; _getAnimationSize: () => string; render(): React.JSX.Element; } declare namespace BounceAnimation { let displayName: string; namespace propTypes { let dataHook: PropTypes.Requireable; let children: PropTypes.Validator>; let active: PropTypes.Requireable; let onStart: PropTypes.Requireable<(...args: any[]) => any>; let onEnd: PropTypes.Requireable<(...args: any[]) => any>; let loop: PropTypes.Requireable; let delay: PropTypes.Requireable>; } let defaultProps: {}; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=BounceAnimation.d.ts.map