import * as React from 'react'; import { CSSProperties } from 'react'; import { AnimationManager, ReactSmoothStyle } from './AnimationManager'; type CSSTransitionAnimateProps = { animationId: string; animationManager?: AnimationManager; duration?: number; begin?: number; easing?: string; isActive?: boolean; canBegin?: boolean; from: T; to: T; attributeName: string; onAnimationStart?: () => void; onAnimationEnd?: () => void; children: (style: CSSProperties | undefined) => React.ReactNode; }; export declare function CSSTransitionAnimate(outsideProps: CSSTransitionAnimateProps): React.ReactNode; export {};