import React from 'react';
import { TransitionProps } from './Transition';
export type BounceProps = TransitionProps;
/**
 * Bounce animation component
 * @see https://rsuitejs.com/components/animation/#bounce
 */
declare const Bounce: React.ForwardRefExoticComponent<TransitionProps & React.RefAttributes<any>>;
export default Bounce;
