import { FC } from 'react';
export interface AnimateHeightProps {
    /**
     * transition-duration
     */
    duration?: number | 'auto';
    /**
     * transition-timing-function
     */
    timingFunction?: string;
    height?: number | 'auto';
    /**
     * disable transition
     */
    animateDisabled?: boolean;
}
declare const AnimateHeight: FC<AnimateHeightProps>;
export default AnimateHeight;
