/// <reference types="react" />
import { TransitionProps } from './type';
declare const Transition: {
    ({ as, visible, animation, duration, className, children, onShow, onHide, onStart, onComplete, ...props }: TransitionProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
    displayName: string;
};
export default Transition;
