import React from 'react'; import { BaseAnimationWrapper } from './BaseAnimationWrapper'; import { AnimationWrapperProps } from '../../Types'; import BounceAnimationConfig from '../../data/BounceAnimationConfig'; export interface BounceAnimationProps extends AnimationWrapperProps { animationConfig: BounceAnimationConfig; } export declare class BounceAnimationWrapper extends BaseAnimationWrapper { private _translateY; constructor(props: BounceAnimationProps); finishAnimation(): void; protected renderAnimation(content: React.ReactNode): React.ReactNode; protected updateCompositeAnimation(): void; }