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>; export default Fade;