import { ReactElement } from 'react'; import { GrowProps } from './types'; declare const Grow: { ({ duration, timingFunction, children, ...props }: GrowProps): ReactElement; displayName: string; }; export default Grow;