import * as React from 'react'; import { TransitionType } from './types'; declare const AdaptedCSSTransition: ({ show, transitionType, children, }: { show: boolean; transitionType?: TransitionType | undefined; children?: React.ReactNode; }) => React.ReactElement; export { AdaptedCSSTransition };