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