/// <reference types="react" />
import { TransitionProps } from 'react-transition-group/Transition';
declare type Props = {
    duration?: number;
} & Omit<TransitionProps<HTMLElement>, 'addEndListener'>;
declare const GrowTransition: (props: Props) => JSX.Element;
export default GrowTransition;
