import React, { FC } from 'react'; import './animated-wrapper.component.scss'; export declare type AnimatedWrapperPropsType = { className?: string; children: React.ReactNode; transitionFade?: boolean; transitionHeight?: boolean; manual?: boolean; initialHeight?: string; fullWidth?: boolean; style?: React.CSSProperties; }; export declare const AnimatedWrapper: FC;